call method

Map<String, dynamic> call()

Implementation

Map<String, dynamic> call() {
  Map<String, dynamic> data = {
    "redirect": this.redirectUrl,
    "hasRedirect": this.hasRedirect,
    "pollUrl": this.pollUrl,
    "error": this.error,
    "success": this.success,
    "hash": this.hash,
    "instructions": this.instructions,
    "authorizationCode": this.authorizationCode,
    "authorizationExpires": this.authorizationExpires,
    "authorizationQr": this.authorizationQr,
  };

  return data;
}