// GENERATED CODE - DO NOT MODIFY BY HAND part of 'today_wait_model.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** TodayWaitModel _$TodayWaitModelFromJson(Map json) => TodayWaitModel( todayWaitCharged: (json['today_wait_charged'] as num?)?.toInt(), todayWaitMedicine: (json['today_wait_medicine'] as num?)?.toInt(), todayWaitOutpatient: (json['today_wait_outpatient'] as num?)?.toInt(), ); Map _$TodayWaitModelToJson(TodayWaitModel instance) => { 'today_wait_charged': instance.todayWaitCharged, 'today_wait_medicine': instance.todayWaitMedicine, 'today_wait_outpatient': instance.todayWaitOutpatient, };