copyWith method

OtacViewModel copyWith({
  1. String? otac,
})

Implementation

OtacViewModel copyWith({String? otac}) {
  return OtacViewModel(otac: otac ?? this.otac);
}