Hourly.fromJson constructor

Hourly.fromJson(
  1. Map json_
)

Implementation

Hourly.fromJson(core.Map json_)
    : this(
        minuteOffset: json_['minuteOffset'] as core.int?,
        periodicity: json_['periodicity'] as core.int?,
      );