handelException method

  1. @override
void handelException(
  1. dynamic e, {
  2. String? subTitle,
})
override

Implementation

@override
void handelException(e, {String? subTitle}) {
  super.handelException(e, subTitle: subTitle);
  if (e.toString().contains('firebase_auth')) {
    handleExceptionOTP(e);
  }
}