LexBytes constructor

  1. @JsonSerializable(includeIfNull: false)
const LexBytes({
  1. @Default('bytes') String type,
  2. String? description,
  3. int? maxLength,
  4. int? minLength,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory LexBytes({
  @Default('bytes') String type,
  String? description,
  int? maxLength,
  int? minLength,
}) = _LexBytes;