toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() => {
      "status": status == null ? null : status,
      "cvc": cvc == null ? null : cvc,
      "card": card == null ? null : card!.toMap(),
      "error": error == null ? null : error!.toMap(),
    };