copyWith method

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

Implementation

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