getNonChatUsers method
Implementation
@override
Future<dynamic> getNonChatUsers() async {
dynamic val;
try {
val = await mirrorFlyMethodChannel.invokeMethod('getNonChatUsers');
debugPrint('getNonChatUsers : $val');
return val;
} on PlatformException catch (e) {
debugPrint("Platform Exception ===> $e");
rethrow;
} on Exception catch (error) {
debugPrint("Exception ==> $error");
rethrow;
}
}