getProfile method

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

Implementation

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