Updates a group.
Group must include the ID and new name.
Future<void> update(Group group) async { await _channel.invokeMethod('groups.update', { 'groupId': group.id, 'name': group.name, }); }