partDirective abstract method

PartDirective partDirective(
  1. Comment? comment,
  2. List<Annotation>? metadata,
  3. Token partKeyword,
  4. StringLiteral partUri,
  5. Token semicolon,
)

Returns a newly created part directive. Either or both of the comment and metadata can be null if the directive does not have the corresponding attribute.

Implementation

PartDirective partDirective(Comment? comment, List<Annotation>? metadata,
    Token partKeyword, StringLiteral partUri, Token semicolon);