queryMemberListByPage method Null safety

Future<NIMResult<List<NIMSuperTeamMember>>> queryMemberListByPage(
  1. String teamId,
  2. int offset,
  3. int limit
)

Get the members of a group by pagination (not supported on Windows & macOS)

Implementation

Future<NIMResult<List<NIMSuperTeamMember>>> queryMemberListByPage(
    String teamId, int offset, int limit) async {
  throw UnimplementedError('queryMemberListByPage() is not implemented');
}