Avg.fromJson constructor

Avg.fromJson(
  1. 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,
    );