updateProfile method

Implementation

Future<ProfileUpdateResponse> updateProfile(
  ProfileUpdateRequest request,
) async =>
    ProfileUpdateResponse.fromJson(
      await _post(
        _buildUri('accounts:update'),
        request.toJson(),
      ),
    );