copyWith method

TestInt copyWith({
  1. int? value,
})

Implementation

TestInt copyWith({int? value}) => TestInt(value: value ?? this.value);