getMaxCallUsersCount static method

Future<int?> getMaxCallUsersCount()

/ Retrieves the maximum number of users allowed in a call.

This static method asynchronously calls the platform-specific implementation to obtain the maximum number of users allowed in a call.

Returns a Future containing the maximum number of users allowed in a call,

Implementation

static Future<int?> getMaxCallUsersCount() async {
  return FlyChatFlutterPlatform.instance.getMaxCallUsersCount();
}