removeGroupAdmin method

  1. @override
Future<bool> removeGroupAdmin(
  1. String topic,
  2. String inboxId
)
override

Implementation

@override
Future<bool> removeGroupAdmin(String topic, String inboxId) async {
  final result = await methodChannel.invokeMethod<bool>('removeGroupAdmin', {
    'topic': topic,
    'inboxId': inboxId,
  });
  return result ?? false;
}