Avg.fromJson constructor
Avg.fromJson(
- Map json_
Implementation
Avg.fromJson(core.Map json_)
: this(
property: json_.containsKey('property')
? PropertyReference.fromJson(
json_['property'] as core.Map<core.String, core.dynamic>)
: null,
);