passApply method Null safety

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

Approve the request to join the group. Only the group owner and group admins have the permission for this operation.

Implementation

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