copyWith method

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

Implementation

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