fromResponse static method

AuthenticationInfoEntity fromResponse({
  1. required CheckCodeResponse response,
})

Implementation

static AuthenticationInfoEntity fromResponse({
  required CheckCodeResponse response,
}) =>
    AuthenticationInfoEntity(
      token: response.token,
      isSalesRep: response.salesRep,
    );