getGroupMemberRole method

  1. @override
Future<Map<String, dynamic>> getGroupMemberRole(
  1. String topic,
  2. String inboxId
)
override

Implementation

@override
Future<Map<String, dynamic>> getGroupMemberRole(String topic, String inboxId) async {
  final result = await methodChannel.invokeMethod('getGroupMemberRole', {
    'topic': topic,
    'inboxId': inboxId,
  });
  return Map<String, dynamic>.from(result ?? {});
}