Token management, Factory reset, UX/UI Improvements
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
// 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,
|
||||
};
|
||||
Reference in New Issue
Block a user