Sign in
dart
/
co19
/
refs/heads/nnbd
/
.
/
Language
/
Classes
/
Constructors
/
Factories
/
syntax_t01.lib.dart
blob: bb0d35b9ddd9b370bc1da9b1b6a8ebcf74532bab [
file
] [
log
] [
blame
]
library
lib
;
import
"syntax_t01.dart"
as
test
;
// References a factory class in another library
abstract
class
A
{
factory
A
()
{
return
new
test
.
AImpl
();
}
factory
A
.
named
()
{
return
new
test
.
AImpl
();}
int
methodA
();
}