copyWith method
Implementation
@override
UpdateOption copyWith({
String? name,
OptionValue? value,
dynamic extra,
int? clientId,
}) =>
UpdateOption(
name: name ?? this.name,
value: value ?? this.value,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);