ImportMapping constructor

ImportMapping({
  1. String? lifecycle,
  2. String? content,
  3. String? cdLocal,
  4. Map<String, String> label = const {},
  5. Set<CodeStub> tags = const {},
})

Returns a new ImportMapping instance.

Implementation

ImportMapping({
  this.lifecycle,
  this.content,
  this.cdLocal,
  this.label = const {},
  this.tags = const {},
});