GoogleCloudDocumentaiV1DocumentEntityNormalizedValue.fromJson constructor

GoogleCloudDocumentaiV1DocumentEntityNormalizedValue.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDocumentaiV1DocumentEntityNormalizedValue.fromJson(core.Map json_)
  : this(
      addressValue: json_.containsKey('addressValue')
          ? GoogleTypePostalAddress.fromJson(
              json_['addressValue'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      booleanValue: json_['booleanValue'] as core.bool?,
      dateValue: json_.containsKey('dateValue')
          ? GoogleTypeDate.fromJson(
              json_['dateValue'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      datetimeValue: json_.containsKey('datetimeValue')
          ? GoogleTypeDateTime.fromJson(
              json_['datetimeValue'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      floatValue: (json_['floatValue'] as core.num?)?.toDouble(),
      integerValue: json_['integerValue'] as core.int?,
      moneyValue: json_.containsKey('moneyValue')
          ? GoogleTypeMoney.fromJson(
              json_['moneyValue'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      signatureValue: json_['signatureValue'] as core.bool?,
      text: json_['text'] as core.String?,
    );