doesFetchingMembersListFromServedRequired method

  1. @override
Future<bool?> doesFetchingMembersListFromServedRequired(
  1. String groupJid
)
override

Implementation

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