// GENERATED CODE - DO NOT MODIFY BY HAND part of 'day_flow.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** DayFlow _$DayFlowFromJson(Map 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 _$DayFlowToJson(DayFlow instance) => { 'localDate': instance.localDate, 'localDateTime': instance.localDateTime, 'count': instance.count, 'amount': instance.amount, 'refundAmount': instance.refundAmount, 'storeName': instance.storeName, 'nickname': instance.nickname, 'phone': instance.phone, };