updateProfile method

Future<ProfileUpdateResponse> updateProfile(
  1. ProfileUpdateRequest request
)

Implementation

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