You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.0 KiB
29 lines
1.0 KiB
1 month ago
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||
|
|
||
|
part of 'day_flow.dart';
|
||
|
|
||
|
// **************************************************************************
|
||
|
// JsonSerializableGenerator
|
||
|
// **************************************************************************
|
||
|
|
||
|
DayFlow _$DayFlowFromJson(Map<String, dynamic> json) => DayFlow()
|
||
|
..localDate = json['localDate']
|
||
|
..localDateTime = json['localDateTime'] as String?
|
||
|
..count = (json['count'] as num?)?.toInt()
|
||
|
..amount = json['amount'] as String?
|
||
|
..refundAmount = json['refundAmount'] as String?
|
||
|
..storeName = json['storeName'] as String?
|
||
|
..nickname = json['nickname']
|
||
|
..phone = json['phone'];
|
||
|
|
||
|
Map<String, dynamic> _$DayFlowToJson(DayFlow instance) => <String, dynamic>{
|
||
|
'localDate': instance.localDate,
|
||
|
'localDateTime': instance.localDateTime,
|
||
|
'count': instance.count,
|
||
|
'amount': instance.amount,
|
||
|
'refundAmount': instance.refundAmount,
|
||
|
'storeName': instance.storeName,
|
||
|
'nickname': instance.nickname,
|
||
|
'phone': instance.phone,
|
||
|
};
|