copyWith method

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

Implementation

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