AuthenticatedToken.from constructor

AuthenticatedToken.from(
  1. Map json
)

Convert Map to AuthenticatedToken

Implementation

AuthenticatedToken.from(Map json)
    : id = json['id'],
      status = json['status'],
      authenticationId = json['authenticationId'],
      payerAuthenticationUrl = json['payerAuthenticationUrl'],
      maskedCardNumber = json['maskedCardNumber'],
      cardInfo = CardInfo.from(json['cardInfo']),
      jwt = json['jwt'],
      threedsVersion = json['threedsVersion'],
      environment = json['environment'];