asNullable method

  1. @override
BoolSpec asNullable()
override

Creates a copy of this spec with nullable set to true.

Implementation

@override
BoolSpec asNullable() => BoolSpec(
      defaultValue: defaultValue,
      description: description,
      nullable: true,
      examples: examples,
      isDeprecated: isDeprecated,
    );