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
724 B
20 lines
724 B
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'facility_appointment_model.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
FacilityAppointmentModel _$FacilityAppointmentModelFromJson(
|
|
Map<String, dynamic> json) =>
|
|
FacilityAppointmentModel(
|
|
id: json['id'] as int,
|
|
code: json['code'] as String,
|
|
status: json['status'] as int,
|
|
address: json['address'] as String,
|
|
reserveEndDate: json['reserveEndDate'] as String,
|
|
reserveStartDate: json['reserveStartDate'] as String,
|
|
nullifyReason: json['nullifyReason'] as String?,
|
|
);
|