GoogleCloudContentwarehouseV1InvalidRule.fromJson constructor

GoogleCloudContentwarehouseV1InvalidRule.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContentwarehouseV1InvalidRule.fromJson(core.Map json_)
  : this(
      error: json_['error'] as core.String?,
      rule:
          json_.containsKey('rule')
              ? GoogleCloudContentwarehouseV1Rule.fromJson(
                json_['rule'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );