resendOtp method

void resendOtp(
  1. BuildContext context,
  2. int step
)

Implementation

void resendOtp(BuildContext context, int step) {
  final String? phoneNumber = this.visitPhoneNumber();
  final IGraphQlClient? client = AppWrapperBase.of(context)?.graphQLClient;

  dispatch(
      ResendOtpAction(phoneNumber: phoneNumber, client: client, step: step));
}