import 'package:json_annotation/json_annotation.dart'; part 'timetableSettings.g.dart'; @JsonSerializable() class TimetableSettings { bool connectDoubleLessons; TimetableSettings({required this.connectDoubleLessons}); factory TimetableSettings.fromJson(Map json) => _$TimetableSettingsFromJson(json); Map toJson() => _$TimetableSettingsToJson(this); }