getMyProfileStatus method

  1. @override
Future getMyProfileStatus()
override

Implementation

@override
Future<dynamic> getMyProfileStatus() async {
  dynamic response = "";
  try {
    response =
        await mirrorFlyMethodChannel.invokeMethod('getMyProfileStatus');
    debugPrint("getMyProfileStatus Result ==> $response");
    return response;
  } on PlatformException catch (e) {
    debugPrint("Platform Exception ===> $e");
    rethrow;
  } on Exception catch (error) {
    debugPrint("Exception ==> $error");
    rethrow;
  }
}