copyWith method

OptionValueBoolean copyWith({
  1. bool? value,
})

Implementation

OptionValueBoolean copyWith({bool? value}) =>
    OptionValueBoolean(value: value ?? this.value);