AptSettings.fromJson constructor
AptSettings.fromJson(
- Map json_
Implementation
AptSettings.fromJson(core.Map json_)
: this(
excludes: (json_['excludes'] as core.List?)
?.map((value) => value as core.String)
.toList(),
exclusivePackages: (json_['exclusivePackages'] as core.List?)
?.map((value) => value as core.String)
.toList(),
type: json_['type'] as core.String?,
);