progress on home page
This commit is contained in:
26
lib/screens/pay/pay_controller.g.dart
Normal file
26
lib/screens/pay/pay_controller.g.dart
Normal file
@@ -0,0 +1,26 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'pay_controller.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
_BillProduct _$BillProductFromJson(Map<String, dynamic> json) => _BillProduct(
|
||||
uid: json['uid'] as String,
|
||||
name: json['name'] as String,
|
||||
description: json['description'] as String,
|
||||
displayName: json['displayName'] as String,
|
||||
defaultAmount: (json['defaultAmount'] as num).toDouble(),
|
||||
requiresAmount: json['requiresAmount'] as bool,
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$BillProductToJson(_BillProduct instance) =>
|
||||
<String, dynamic>{
|
||||
'uid': instance.uid,
|
||||
'name': instance.name,
|
||||
'description': instance.description,
|
||||
'displayName': instance.displayName,
|
||||
'defaultAmount': instance.defaultAmount,
|
||||
'requiresAmount': instance.requiresAmount,
|
||||
};
|
||||
Reference in New Issue
Block a user