setGroupAttributes method Null safety
Set group attributes. If the group attributes already exist, their values are updated. Otherwise, the group attributes are added.
Implementation
Future<V2TimCallback> setGroupAttributes({
required String groupID,
required Map<String, String> attributes,
}) async {
return ImFlutterPlatform.instance
.setGroupAttributes(groupID: groupID, attributes: attributes);
}