sendShopifyEmailVerificationCode method

Future<Result> sendShopifyEmailVerificationCode(
  1. String email
)

Send an email OTP verification code to email.

Used in the Shopify email-verification flow after phone OTP is verified and the response contains authRequired: true with an email address.

Implementation

Future<Result> sendShopifyEmailVerificationCode(String email) async {
  return await ShopifyService.shopifySendEmailVerificationCode(email);
}