Set constructor

  1. @JsonSerializable(includeIfNull: false)
const Set({
  1. @Default('tools.ozone.set.defs#set') String $type,
  2. required String name,
  3. String? description,
  4. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory Set({
  @Default('tools.ozone.set.defs#set') String $type,
  required String name,
  String? description,

  Map<String, dynamic>? $unknown,
}) = _Set;