updateGroup method
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'],
);
}