GoogleCloudSecuritycenterV1Property.fromJson constructor

GoogleCloudSecuritycenterV1Property.fromJson(
  1. Map json_
)

Implementation

GoogleCloudSecuritycenterV1Property.fromJson(core.Map json_)
    : this(
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
        valueExpression: json_.containsKey('valueExpression')
            ? Expr.fromJson(json_['valueExpression']
                as core.Map<core.String, core.dynamic>)
            : null,
      );