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