setLastSeenVisibility method
Future<void>
setLastSeenVisibility(
- bool enable,
- dynamic callback(
- FlyResponse response
override
Sets the visibility of the last seen time for the current user.
Implementation
@override
Future<void> setLastSeenVisibility(
bool enable, Function(FlyResponse response)? callback) async {
// bool? res;
try {
await mirrorFlyMethodChannel
.invokeMethod<bool>('enableDisableHideLastSeen', {"enable": enable});
callback?.call(FlyResponse(true, FlyConstants.empty, FlyConstants.empty));
// return res;
} 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)));
}
}