getUserLastSeenTime method
This method is used to get user's last seen time.
Implementation
@override
Future<void> getUserLastSeenTime(
String jid, Function(FlyResponse response)? callback) async {
String? response;
try {
response = await mirrorFlyMethodChannel
.invokeMethod<String>('getUserLastSeenTime', {"jid": jid});
LogMessage.d("getUserLastSeenTime Result ", " $response");
callback?.call(FlyResponse(
true, response ?? FlyConstants.empty, FlyConstants.empty));
// return response;
} on PlatformException catch (e) {
LogMessage.d("Platform Exception =", " $e");
callback?.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty,
FlyException(e.code, e.message, e.details)));
} on Exception catch (e) {
LogMessage.d("Exception ", " $e");
callback?.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty,
FlyException(FlyErrorCode.unHandle, FlyErrorMessage.unHandle, e)));
}
}