isHideLastSeenEnabled method

  1. @override
Future<bool?> isHideLastSeenEnabled()
override

Implementation

@override
Future<bool?> isHideLastSeenEnabled() async {
  bool? res;
  try {
    res = await mirrorFlyMethodChannel
        .invokeMethod<bool>('isHideLastSeenEnabled');
    return res;
  } on PlatformException catch (e) {
    debugPrint("Platform Exception ===> $e");
    rethrow;
  } on Exception catch (error) {
    debugPrint("Exception ==> $error");
    rethrow;
  }
}