TableChangeInsight.fromJson constructor

TableChangeInsight.fromJson(
  1. Map json_
)

Implementation

TableChangeInsight.fromJson(core.Map json_)
  : this(
      metadataCacheNotUsedButUsedPreviously:
          json_['metadataCacheNotUsedButUsedPreviously'] as core.bool?,
      metadataCacheStalenessInsight:
          json_.containsKey('metadataCacheStalenessInsight')
          ? MetadataCacheStalenessInsight.fromJson(
              json_['metadataCacheStalenessInsight']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
      tableReference: json_.containsKey('tableReference')
          ? TableReference.fromJson(
              json_['tableReference'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );