profileGetOwnProfile function

Future<Profile> profileGetOwnProfile(
  1. ProfileGetOwnProfile profileGetOwnProfile
)

Implementation

Future<Profile> profileGetOwnProfile(
    ProfileGetOwnProfile profileGetOwnProfile) async {
  String? response = await _clientPostRawResponse(PlurkEndpoints.profileGetOwnProfile(),
      body: profileGetOwnProfile.toBody());
  return compute(parseProfile, response);
}