NativeClauseImpl constructor

NativeClauseImpl({
  1. required Token nativeKeyword,
  2. required StringLiteralImpl? name,
})

Initialize a newly created native clause.

Implementation

NativeClauseImpl({
  required this.nativeKeyword,
  required this.name,
}) {
  _becomeParentOf(name);
}