CodeStubDto constructor

CodeStubDto({
  1. String? id,
  2. String? context,
  3. String? type,
  4. String? code,
  5. String? version,
  6. Map<String, String> label = const {},
})

Returns a new CodeStubDto instance.

Implementation

CodeStubDto({
  this.id,
  this.context,
  this.type,
  this.code,
  this.version,
  this.label = const {},
});