ApplyParametersRequest.fromJson constructor

ApplyParametersRequest.fromJson(
  1. Map json_
)

Implementation

ApplyParametersRequest.fromJson(core.Map json_)
    : this(
        applyAll: json_.containsKey('applyAll')
            ? json_['applyAll'] as core.bool
            : null,
        nodeIds: json_.containsKey('nodeIds')
            ? (json_['nodeIds'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );