doesFetchingMembersListFromServedRequired method
Future<bool?>
doesFetchingMembersListFromServedRequired(
- 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;
}
}