sendOTP function
Implementation
Future<void> sendOTP(
BuildContext context, IGraphQlClient? client, String phoneContact) async {
StoreProvider.dispatch<CoreState>(
context, SendOTPAction(client: client, phoneContact: phoneContact));
}
Future<void> sendOTP(
BuildContext context, IGraphQlClient? client, String phoneContact) async {
StoreProvider.dispatch<CoreState>(
context, SendOTPAction(client: client, phoneContact: phoneContact));
}