copyWith method

VerifyOTPModule copyWith({
  1. VerifyOTPDataModule? data,
})

Implementation

VerifyOTPModule copyWith({
  VerifyOTPDataModule? data,
}) {
  return VerifyOTPModule(
    data: data ?? this.data,
  );
}