prototype complete
This commit is contained in:
67
lib/screens/transaction_controller.g.dart
Normal file
67
lib/screens/transaction_controller.g.dart
Normal file
@@ -0,0 +1,67 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'transaction_controller.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
_FormData _$FormDataFromJson(Map<String, dynamic> json) => _FormData(
|
||||
type: json['type'] as String,
|
||||
billClientId: json['billClientId'] as String,
|
||||
debitRef: json['debitRef'] as String,
|
||||
debitCurrency: json['debitCurrency'] as String,
|
||||
amount: json['amount'] as String,
|
||||
creditAccount: json['creditAccount'] as String,
|
||||
creditPhone: json['creditPhone'] as String?,
|
||||
creditName: json['creditName'] as String?,
|
||||
creditEmail: json['creditEmail'] as String?,
|
||||
billName: json['billName'] as String,
|
||||
errorMessage: json['errorMessage'] as String?,
|
||||
status: json['status'] as String,
|
||||
paymentProcessorLabel: json['paymentProcessorLabel'] as String,
|
||||
paymentProcessorName: json['paymentProcessorName'] as String,
|
||||
paymentProcessorImage: json['paymentProcessorImage'] as String,
|
||||
providerImage: json['providerImage'] as String,
|
||||
providerLabel: json['providerLabel'] as String,
|
||||
userId: json['userId'] as String,
|
||||
debitPhone: json['debitPhone'] as String?,
|
||||
debitAccount: json['debitAccount'] as String?,
|
||||
productUid: json['productUid'] as String?,
|
||||
trace: json['trace'] as String?,
|
||||
authType: json['authType'] as String?,
|
||||
charge: json['charge'] as String?,
|
||||
gatewayCharge: json['gatewayCharge'] as String?,
|
||||
tax: json['tax'] as String?,
|
||||
totalAmount: json['totalAmount'] as String?,
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$FormDataToJson(_FormData instance) => <String, dynamic>{
|
||||
'type': instance.type,
|
||||
'billClientId': instance.billClientId,
|
||||
'debitRef': instance.debitRef,
|
||||
'debitCurrency': instance.debitCurrency,
|
||||
'amount': instance.amount,
|
||||
'creditAccount': instance.creditAccount,
|
||||
'creditPhone': instance.creditPhone,
|
||||
'creditName': instance.creditName,
|
||||
'creditEmail': instance.creditEmail,
|
||||
'billName': instance.billName,
|
||||
'errorMessage': instance.errorMessage,
|
||||
'status': instance.status,
|
||||
'paymentProcessorLabel': instance.paymentProcessorLabel,
|
||||
'paymentProcessorName': instance.paymentProcessorName,
|
||||
'paymentProcessorImage': instance.paymentProcessorImage,
|
||||
'providerImage': instance.providerImage,
|
||||
'providerLabel': instance.providerLabel,
|
||||
'userId': instance.userId,
|
||||
'debitPhone': instance.debitPhone,
|
||||
'debitAccount': instance.debitAccount,
|
||||
'productUid': instance.productUid,
|
||||
'trace': instance.trace,
|
||||
'authType': instance.authType,
|
||||
'charge': instance.charge,
|
||||
'gatewayCharge': instance.gatewayCharge,
|
||||
'tax': instance.tax,
|
||||
'totalAmount': instance.totalAmount,
|
||||
};
|
||||
Reference in New Issue
Block a user