copyWith method

TestString copyWith({
  1. String? value,
})

Implementation

TestString copyWith({String? value}) =>
    TestString(value: value ?? this.value);