MetadataCacheStalenessInsight.fromJson constructor

MetadataCacheStalenessInsight.fromJson(
  1. Map json_
)

Implementation

MetadataCacheStalenessInsight.fromJson(core.Map json_)
  : this(
      avgPreviousStalenessMs: json_['avgPreviousStalenessMs'] as core.String?,
      stalenessPercentageIncrease:
          (json_['stalenessPercentageIncrease'] as core.num?)?.toDouble(),
    );