QueeCliConfig.fromJson constructor
QueeCliConfig.fromJson(
- YamlMap json
Implementation
QueeCliConfig.fromJson(YamlMap json) {
name = json['name'];
version = json['version'];
settings =
json['settings'] != null ? Settings.fromJson(json['settings']) : null;
}