sendVerificationCode method
Send an OTP verification code to phoneNumber.
Set notifications to true to opt the user into marketing notifications.
Implementation
Future<Result<OtpSentResponseData?>> sendVerificationCode({
required String phoneNumber,
bool notifications = false,
}) async {
return await ApiService.sendVerificationCode(phoneNumber, notifications);
}