prototype complete
This commit is contained in:
@@ -6,6 +6,28 @@ part of 'pay_controller.dart';
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
_PaymentProcessor _$PaymentProcessorFromJson(Map<String, dynamic> json) =>
|
||||
_PaymentProcessor(
|
||||
name: json['name'] as String,
|
||||
description: json['description'] as String,
|
||||
image: json['image'] as String,
|
||||
accountFieldName: json['accountFieldName'] as String,
|
||||
accountFieldLabel: json['accountFieldLabel'] as String,
|
||||
label: json['label'] as String,
|
||||
authType: json['authType'] as String,
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$PaymentProcessorToJson(_PaymentProcessor instance) =>
|
||||
<String, dynamic>{
|
||||
'name': instance.name,
|
||||
'description': instance.description,
|
||||
'image': instance.image,
|
||||
'accountFieldName': instance.accountFieldName,
|
||||
'accountFieldLabel': instance.accountFieldLabel,
|
||||
'label': instance.label,
|
||||
'authType': instance.authType,
|
||||
};
|
||||
|
||||
_BillProduct _$BillProductFromJson(Map<String, dynamic> json) => _BillProduct(
|
||||
uid: json['uid'] as String,
|
||||
name: json['name'] as String,
|
||||
|
||||
Reference in New Issue
Block a user