getUserList method
Implementation
@override
Future<dynamic> getUserList(int page, String search,
[int perPageResultSize = 20]) async {
dynamic re;
try {
re = await mirrorFlyMethodChannel.invokeMethod("get_user_list", {
"page": page,
"search": search,
"perPageResultSize": perPageResultSize
});
debugPrint('RESULT ==> $re');
return re;
} on PlatformException catch (e) {
debugPrint("er $e");
return re;
}
}