getProfileDetails method

Future<ProfileDetails> getProfileDetails()

Implementation

Future<ProfileDetails> getProfileDetails() async {
  var value = await Mirrorfly.getProfileDetails(jid: jid.checkNull());
  var str = ProfileDetails.fromJson(json.decode(value.toString()));
  return str;
}