WindowsUpdateSettings.fromJson constructor

WindowsUpdateSettings.fromJson(
  1. Map json_
)

Implementation

WindowsUpdateSettings.fromJson(core.Map json_)
  : this(
      classifications: (json_['classifications'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      excludes: (json_['excludes'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      exclusivePatches: (json_['exclusivePatches'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
    );