getUserProfile method

Future<void> getUserProfile(
  1. String jid,
  2. dynamic callback(
    1. FlyResponse response
    ), [
  3. bool fromserver = false,
  4. bool saveasfriend = false,
])

This method is used to get the user profile.

Implementation

Future<void> getUserProfile(
    String jid, Function(FlyResponse response) callback,
    [bool fromserver = false, bool saveasfriend = false]) {
  throw UnimplementedError('has not been implemented.');
}