You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
586 B
Dart
29 lines
586 B
Dart
3 years ago
|
import 'package:jade_gui/classes/desktop.dart';
|
||
|
import 'package:jade_gui/classes/location.dart';
|
||
|
|
||
|
class installPrefs {
|
||
|
final Location locale;
|
||
|
final String keymap;
|
||
|
final String layout;
|
||
|
final String username;
|
||
|
final bool enableSudo;
|
||
|
final bool enableRoot;
|
||
|
final Desktop desktop;
|
||
|
final String disk;
|
||
|
|
||
|
installPrefs({
|
||
|
this.locale = const Location(),
|
||
|
this.keymap = "",
|
||
|
this.layout = "",
|
||
|
this.username = "",
|
||
|
this.enableSudo = false,
|
||
|
this.enableRoot = false,
|
||
|
this.desktop = const Desktop(),
|
||
|
this.disk = "",
|
||
|
});
|
||
|
|
||
|
/* Map toJson() => {
|
||
|
|
||
|
}*/
|
||
|
}
|