Authentication.from constructor

Authentication.from(
  1. Map json
)

Convert Map to Authentication

Implementation

Authentication.from(Map json)
    : id = json['id'],
      creditCardTokenId = json['creditCardTokenId'],
      payerAuthenticationUrl = json['payerAuthenticationUrl'],
      status = json['status'],
      maskedCardNumber = json['maskedCardNumber'],
      cardInfo = CardInfo.from(json['cardInfo']),
      requestPayload = json['requestPayload'],
      authenticationTransactionId = json['authenticationTransactionId'];