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