ImportDeclaration constructor

const ImportDeclaration(
  1. Token keyword,
  2. ImportType type,
  3. Token identifier
)

Implementation

const ImportDeclaration(
  this.keyword,
  this.type,
  this.identifier,
);