updateGroup method
Implementation
@override
Future<bool> updateGroup(String topic, Map<String, String> updates) async {
final result = await methodChannel.invokeMethod<bool>('updateGroup', {
'topic': topic,
'updates': updates,
});
return result ?? false;
}