toMap method
Generate a map from the object
Implementation
Map<String, dynamic> toMap() {
return <String, dynamic>{
'aid': aid,
'brandId': brandId,
'brandName': brandName,
'cardAppLabel': cardAppLabel,
'paymentBusinessModel': paymentBusinessModel,
'transactionTypeInfo': transactionTypeInfo?.toMap(),
};
}