updateGroup method

  1. @override
Future<bool> updateGroup(
  1. String topic,
  2. Map<String, String> updates
)
override

Implementation

@override
Future<bool> updateGroup(String topic, Map<String, String> updates) async {
  await _ensureInitialized();
  return rust_groups.updateGroup(
    topic: topic,
    name: updates['name'],
    description: updates['description'],
    imageUrl: updates['imageUrl'],
  );
}