toModel method

Credentials toModel()

Constructs the new Credentials from this SignUp$Mutation.

Implementation

Credentials toModel() {
  return Credentials(
    accessToken.toModel(),
    refreshToken.toModel(),
    session.id,
    user.id,
  );
}