toastOtpError function
Implementation
void toastOtpError(BuildContext context, String message) {
logger.e("Phone Verification failed");
logger.d("Failed Phone Verification $message");
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(content: Text("Phone Verification failed $message")));
}