removeGroupAdmin method

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

Implementation

@override
Future<bool> removeGroupAdmin(String topic, String inboxId) async {
  await _ensureInitialized();
  return rust_groups.removeGroupAdmin(topic: topic, inboxId: inboxId);
}