updateTeamFields method Null safety
- String teamId,
- NIMTeamUpdateFieldRequest request
Batch update multiple attributes of a group. teamId: The group ID request: The attributes that need to be updated and the corresponding values.
Implementation
Future<NIMResult<void>> updateTeamFields(
String teamId, NIMTeamUpdateFieldRequest request) {
return _platform.updateTeamFields(teamId, request);
}