copyWith method

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

Implementation

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