copyWith method

  1. @override
JsonValueArray copyWith({
  1. List<JsonValue>? values,
  2. dynamic extra,
  3. int? clientId,
})
override

Implementation

@override
JsonValueArray copyWith({
  List<JsonValue>? values,
  dynamic extra,
  int? clientId,
}) => JsonValueArray(
  values: values ?? this.values,
  extra: extra ?? this.extra,
  clientId: clientId ?? this.clientId,
);