LexBoolean constructor

  1. @JsonSerializable(includeIfNull: false)
const LexBoolean({
  1. @Default('boolean') String type,
  2. String? description,
  3. @JsonKey(name: 'default') bool? defaultValue,
  4. @JsonKey(name: 'const') bool? constValue,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory LexBoolean({
  @Default('boolean') String type,
  String? description,
  @JsonKey(name: 'default') bool? defaultValue,
  @JsonKey(name: 'const') bool? constValue,
}) = _LexBoolean;