CodeStub constructor

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

Returns a new CodeStub instance.

Implementation

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