QueeCliConfig.fromJson constructor

QueeCliConfig.fromJson(
  1. YamlMap json
)

Implementation

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