updateProfile method

Future<ProfileInterface> updateProfile({
  1. required ReachFiveKeyInterface reachFiveKey,
  2. required AuthTokenInterface authToken,
  3. required ProfileInterface profile,
})
inherited

Implementation

Future<ProfileInterface> updateProfile({
  required ReachFiveKeyInterface reachFiveKey,
  required AuthTokenInterface authToken,
  required ProfileInterface profile,
}) =>
    reachFiveHostApi.updateProfile(
      UpdateProfileRequestInterface(
        reachFiveKey: reachFiveKey,
        authToken: authToken,
        profile: profile,
        errorCodes: errorCodesInterface,
      ),
    );