LexRef constructor

  1. @JsonSerializable(includeIfNull: false)
const LexRef({
  1. @Default('ref') String type,
  2. String? description,
  3. String? ref,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory LexRef({
  @Default('ref') String type,
  String? description,
  String? ref,
}) = _LexRef;