toJson method

Map<String, Object?> toJson()

Implementation

Map<String, Object?> toJson() {
  return {
    "aboTicketCheckRequestList": [
      {
        "deviceToken": deviceToken,
        "hasLichtbild": hasVerificationImage,
        "lichtbildSignature": verificationImageSignature,
        "textHash": textHash,
        "ticketTokenList": ticketTokens,
      }
    ]
  };
}