sendOTP function

Future<void> sendOTP(
  1. BuildContext context,
  2. IGraphQlClient? client,
  3. String phoneContact
)

Implementation

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