getMaxCallUsersCount method
This method is used to get the max call users count.
Implementation
@override
Future<int?> getMaxCallUsersCount() async {
int? res;
try {
res =
await mirrorFlyCallMethodChannel.invokeMethod('getMaxCallUsersCount');
LogMessage.d('getMaxCallUsersCount', '$res');
return res;
} on PlatformException catch (e) {
LogMessage.d("Platform Exception =", " $e");
rethrow;
} on Exception catch (error) {
LogMessage.d("Exception ", " $error");
rethrow;
}
}