$TeardownTag.fromJson constructor

$TeardownTag.fromJson(
  1. Map json_
)

Implementation

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