doesFetchingMembersListFromServedRequired method
This method is used to get fetch the group members list from the server is required.
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) {
LogMessage.d("Platform Exception =", " $e");
rethrow;
} on Exception catch (error) {
LogMessage.d("Exception ", " $error");
rethrow;
}
}