TargetsTypeCondition.fromJson constructor

TargetsTypeCondition.fromJson(
  1. Map json_
)

Implementation

TargetsTypeCondition.fromJson(core.Map json_)
    : this(
        errorDetails: json_.containsKey('errorDetails')
            ? json_['errorDetails'] as core.String
            : null,
        status:
            json_.containsKey('status') ? json_['status'] as core.bool : null,
      );