copyWith method

OptionValueInteger copyWith({
  1. int? value,
})

Implementation

OptionValueInteger copyWith({int? value}) =>
    OptionValueInteger(value: value ?? this.value);