19 lines
608 B
Dart
19 lines
608 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'device_status.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
DeviceStatus _$DeviceStatusFromJson(Map<String, dynamic> json) => DeviceStatus(
|
|
entryNfc: json['entryNfc'] as bool? ?? false,
|
|
exitNfc: json['exitNfc'] as bool? ?? false,
|
|
);
|
|
|
|
Map<String, dynamic> _$DeviceStatusToJson(DeviceStatus instance) =>
|
|
<String, dynamic>{
|
|
'entryNfc': instance.entryNfc,
|
|
'exitNfc': instance.exitNfc,
|
|
};
|