MastercardAuthResponse constructor

const MastercardAuthResponse({
  1. String? authenticationId,
  2. required String status,
  3. String? redirectUrl,
  4. String? htmlBodyContent,
  5. Map<String, dynamic>? authentication,
  6. Map<String, dynamic>? response,
  7. String? gatewayRecommendation,
})

Implementation

const MastercardAuthResponse({
  this.authenticationId,
  required this.status,
  this.redirectUrl,
  this.htmlBodyContent,
  this.authentication,
  this.response,
  this.gatewayRecommendation,
});