exportDirective abstract method
ExportDirective
exportDirective(
- Comment? comment,
- List<
Annotation> ? metadata, - Token keyword,
- StringLiteral libraryUri,
- List<
Configuration> ? configurations, - List<
Combinator> ? combinators, - Token semicolon,
Returns a newly created export directive. Either or both of the
comment
and metadata
can be null
if the directive does not have the
corresponding attribute. The list of combinators
can be null
if there
are no combinators.
Implementation
ExportDirective exportDirective(
Comment? comment,
List<Annotation>? metadata,
Token keyword,
StringLiteral libraryUri,
List<Configuration>? configurations,
List<Combinator>? combinators,
Token semicolon);