ProjectConfig class

Project config

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

Constructors

ProjectConfig({String? flutter, Map<String, String>? flavors, 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 ProjectConfigCopyWith<ProjectConfig, ProjectConfig, ProjectConfig>
no setterinherited
flavors Map<String, String>?
final
flutter String?
final
flutterUrl String?
Flutter repo url
finalinherited
gitCachePath String?
finalinherited
hashCode int
The hash code for this object.
no setterinherited
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

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

Operators

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

Static Methods

empty() ProjectConfig
fromJson(String json) ProjectConfig
fromMap(Map<String, dynamic> map) ProjectConfig
loadFromPath(String path) ProjectConfig?