AptSettings.fromJson constructor

AptSettings.fromJson(
  1. 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?,
    );