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.
20 lines
732 B
20 lines
732 B
// GENERATED CODE - DO NOT MODIFY BY HAND |
|
|
|
part of 'store_time_info.dart'; |
|
|
|
// ************************************************************************** |
|
// JsonSerializableGenerator |
|
// ************************************************************************** |
|
|
|
StoreTimeInfo _$StoreTimeInfoFromJson(Map<String, dynamic> json) => |
|
StoreTimeInfo() |
|
..openEndTime = json['openEndTime'] as String? |
|
..openStartTime = json['openStartTime'] as String? |
|
..posType = json['posType'] as String?; |
|
|
|
Map<String, dynamic> _$StoreTimeInfoToJson(StoreTimeInfo instance) => |
|
<String, dynamic>{ |
|
'openEndTime': instance.openEndTime, |
|
'openStartTime': instance.openStartTime, |
|
'posType': instance.posType, |
|
};
|
|
|