SchemaBoolean constructor

const SchemaBoolean({
  1. Xml? xml,
  2. String? title,
  3. String? description,
  4. @JsonKey(name: 'default') bool? defaultValue,
  5. bool? nullable,
  6. bool? example,
  7. @JsonKey(name: '\$ref') @_SchemaRefConverter() String? ref,
})

Implementation

const factory SchemaBoolean(
        {final Xml? xml,
        final String? title,
        final String? description,
        @JsonKey(name: 'default') final bool? defaultValue,
        final bool? nullable,
        final bool? example,
        @JsonKey(name: '\$ref') @_SchemaRefConverter() final String? ref}) =
    _$SchemaBooleanImpl;