MaterializedViewStatistics.fromJson constructor
MaterializedViewStatistics.fromJson(
- Map json_
Implementation
MaterializedViewStatistics.fromJson(core.Map json_)
: this(
materializedView: (json_['materializedView'] as core.List?)
?.map((value) => MaterializedView.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
);