copyWith method

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

Implementation

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