getChatPrivilege method

  1. @override
Future<String> getChatPrivilege()

get participant Chat Priviledge when in session
Return the result of participant chat privilege.

Implementation

@override
Future<String> getChatPrivilege() async {
  return await methodChannel
      .invokeMethod<String>('getChatPrivilege')
      .then<String>((String? value) => value ?? "");
}