getUserLastSeenTime method

Future<void> getUserLastSeenTime(
  1. String jid,
  2. dynamic callback(
    1. FlyResponse response
    )?
)

This method is used to get user's last seen time.

Implementation

Future<void> getUserLastSeenTime(
    String jid, Function(FlyResponse response)? callback) {
  throw UnimplementedError('has not been implemented.');
}