copyWith method

  1. @override
OptionValueBoolean copyWith({
  1. bool? value,
  2. dynamic extra,
  3. int? clientId,
})
override

Implementation

@override
OptionValueBoolean copyWith({
  bool? value,
  dynamic extra,
  int? clientId,
}) => OptionValueBoolean(
  value: value ?? this.value,
  extra: extra ?? this.extra,
  clientId: clientId ?? this.clientId,
);