toMap method
Generate a map from the object
Implementation
Map<String, dynamic> toMap() {
return <String, dynamic>{
'acquirerTransactionKey': acquirerTransactionKey,
'actionCode': actionCode,
'aid': aid,
'amount': amount,
'appLabel': appLabel,
'arcq': arcq,
'authorizationCode': authorizationCode,
'capture': capture,
'cardBrand': cardBrand,
'cardBrandId': cardBrandId,
'cardBrandName': cardBrandName,
'cardExpireDate': cardExpireDate,
'cardHolderName': cardHolderName,
'cardHolderNumber': cardHolderNumber,
'cardSequenceNumber': cardSequenceNumber,
'commandActionCode': commandActionCode,
'date': date,
'entryMode': entryMode,
'iccRelatedData': iccRelatedData,
'idFromBase': idFromBase,
'initiatorTransactionKey': initiatorTransactionKey,
'instalmentTransaction': instalmentTransaction,
'instalmentType': instalmentType,
'isFallbackTransaction': isFallbackTransaction,
'qualifiers': qualifiers,
'saleAffiliationKey': saleAffiliationKey,
'serviceCode': serviceCode,
'time': time,
'timeToPassTransaction': timeToPassTransaction,
'transAppSelectedInfo': transAppSelectedInfo?.toMap(),
'transactionReference': transactionReference,
'transactionStatus': transactionStatus,
'typeOfTransactionEnum': typeOfTransactionEnum,
};
}