fetchNext method
Future<List<User> >
fetchNext({
- required dynamic onSuccess()?,
- required dynamic onError(
- CometChatException excep
fetch the list of Users that logged-in user have blocked.
Implementation
Future<List<User>> fetchNext(
{required Function(List<User> userList)? onSuccess,
required Function(CometChatException excep)? onError}) async {
try {
final result = await channel.invokeMethod('fetchBlockedUsers', {
'limit': this.limit,
'searchKeyword': this.searchKeyword,
'direction': this.direction,
'key': this.key
});
final List<User> res = [];
if (result != null) {
key = result["key"];
if (result["list"] != null) {
for (var _obj in result["list"]) {
try {
res.add(User.fromMap(_obj));
} catch (e) {
if (onError != null) {
onError(CometChatException(ErrorCode.errorUnhandledException,
e.toString(), e.toString()));
}
return [];
}
}
}
}
debugPrint("key is $key");
if (onSuccess != null) {
onSuccess(res);
}
return res;
} on PlatformException catch (platformException) {
if (onError != null) {
onError(CometChatException(platformException.code,
platformException.details, platformException.message));
}
} catch (e) {
if (onError != null) {
onError(CometChatException(
ErrorCode.errorUnhandledException, e.toString(), e.toString()));
}
}
return [];
}