exportDirective abstract method

ExportDirective exportDirective(
  1. Comment? comment,
  2. List<Annotation>? metadata,
  3. Token keyword,
  4. StringLiteral libraryUri,
  5. List<Configuration>? configurations,
  6. List<Combinator>? combinators,
  7. 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);