copyWith method

  1. @override
EntityFake copyWith({
  1. String? value,
})

Implementation

@override
EntityFake copyWith({String? value}) {
  return EntityFake(value: value ?? this.value);
}