passApply method Null safety

Future<NIMResult<void>> passApply(
  1. String teamId,
  2. String account
)

Approve the request to join the group.
Only the admins and group owner have the permission to approve the request. teamId The group ID account The ID of the user who requests to join the group.

Implementation

Future<NIMResult<void>> passApply(String teamId, String account) async {
  return _platform.passApply(teamId, account);
}