$SetupTag.fromJson constructor

$SetupTag.fromJson(
  1. Map json_
)

Implementation

$SetupTag.fromJson(core.Map json_)
    : this(
        stopOnSetupFailure: json_.containsKey('stopOnSetupFailure')
            ? json_['stopOnSetupFailure'] as core.bool
            : null,
        tagName: json_.containsKey('tagName')
            ? json_['tagName'] as core.String
            : null,
      );