updateTeamFields method Null safety

Future<NIMResult<void>> updateTeamFields(
  1. String teamId,
  2. 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);
}