22 lines
705 B
Dart
22 lines
705 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'notificationSettings.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
NotificationSettings _$NotificationSettingsFromJson(
|
|
Map<String, dynamic> json) =>
|
|
NotificationSettings(
|
|
askUsageDismissed: json['askUsageDismissed'] as bool,
|
|
enabled: json['enabled'] as bool,
|
|
);
|
|
|
|
Map<String, dynamic> _$NotificationSettingsToJson(
|
|
NotificationSettings instance) =>
|
|
<String, dynamic>{
|
|
'askUsageDismissed': instance.askUsageDismissed,
|
|
'enabled': instance.enabled,
|
|
};
|