factory PayResponse.fromJson(Map<String, dynamic> json) => PayResponse( transaction: Transaction.fromJson(json.getMap('transaction')), card: CardResp.fromJson(json.getMap('card')), );