LexRefUnion constructor

  1. @JsonSerializable(includeIfNull: false)
const LexRefUnion({
  1. @Default('union') String type,
  2. String? description,
  3. List<String>? refs,
  4. bool? closed,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory LexRefUnion({
  @Default('union') String type,
  String? description,
  List<String>? refs,
  bool? closed,
}) = _LexRefUnion;