AppConfig class

Inheritance
Mixed in types
Annotations
  • @MappableClass(ignoreNull: true)

Constructors

AppConfig({bool? disableUpdateCheck, DateTime? lastUpdateCheck, String? cachePath, bool? useGitCache, String? gitCachePath, String? flutterUrl, bool? priviledgedAccess, bool? runPubGetOnSdkChanges, bool? updateVscodeSettings, bool? updateGitIgnore})
Constructor
const

Properties

cachePath String?
Directory where FVM is stored
finalinherited
copyWith AppConfigCopyWith<AppConfig, AppConfig, AppConfig>
no setterinherited
disableUpdateCheck bool?
Disables update notification
final
flutterUrl String?
Flutter repo url
finalinherited
gitCachePath String?
finalinherited
hashCode int
The hash code for this object.
no setterinherited
lastUpdateCheck DateTime?
final
priviledgedAccess bool?
If FVM should run with priviledged access
finalinherited
runPubGetOnSdkChanges bool?
finalinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
updateGitIgnore bool?
If FVM should update .gitignore
finalinherited
updateVscodeSettings bool?
If Vscode settings is not managed by FVM
finalinherited
useGitCache bool?
finalinherited

Methods

merge(BaseConfig? config) AppConfig
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
save(String path) → void
inherited
toJson() String
inherited
toMap() Map<String, dynamic>
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

fromJson AppConfig Function(String json)
final
fromMap AppConfig Function(Map<String, dynamic> map)
final

Static Methods

empty() AppConfig
loadFromPath(String path) AppConfig?