getNonChatUsers method
This method is used to get the non chat users.
Implementation
@override
Future<String> getNonChatUsers() async {
String? res;
try {
res = await mirrorFlyMethodChannel.invokeMethod('getNonChatUsers');
return convertProfileDetailsJsonFromString(res);
} on PlatformException catch (e) {
LogMessage.d("Platform Exception =", " $e");
rethrow;
} on Exception catch (error) {
LogMessage.d("Exception ", " $error");
rethrow;
}
}