dart format
This commit is contained in:
@@ -7,8 +7,12 @@ class NotificationSettings {
|
||||
bool askUsageDismissed;
|
||||
bool enabled;
|
||||
|
||||
NotificationSettings({required this.askUsageDismissed, required this.enabled});
|
||||
NotificationSettings({
|
||||
required this.askUsageDismissed,
|
||||
required this.enabled,
|
||||
});
|
||||
|
||||
factory NotificationSettings.fromJson(Map<String, dynamic> json) => _$NotificationSettingsFromJson(json);
|
||||
factory NotificationSettings.fromJson(Map<String, dynamic> json) =>
|
||||
_$NotificationSettingsFromJson(json);
|
||||
Map<String, dynamic> toJson() => _$NotificationSettingsToJson(this);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user