isLastSeenVisible static method
Checks whether the last seen status is visible to other users.
This static method asynchronously queries the platform to determine whether the last seen status is visible to other users.
Returns a Future that completes with a bool value:
trueif the last seen status is visible.falseif the last seen status is hidden.nullif the visibility status cannot be determined.
Implementation
static Future<bool?> isLastSeenVisible() {
return FlyChatFlutterPlatform.instance.isHideLastSeenEnabled();
}