InitResponse constructor

InitResponse({
  1. required String? redirectUrl,
  2. required bool hasRedirect,
  3. required String? pollUrl,
  4. required String error,
  5. required bool? success,
  6. required String? hash,
  7. required String? instructions,
  8. required String? authorizationCode,
  9. required DateTime? authorizationExpires,
  10. required String? authorizationQr,
})

Implementation

InitResponse({
  required this.redirectUrl,
  required this.hasRedirect,
  required this.pollUrl,
  required this.error,
  required this.success,
  required this.hash,
  required this.instructions,
  required this.authorizationCode,
  required this.authorizationExpires,
  required this.authorizationQr,
});