FanInfo.fromJson constructor

FanInfo.fromJson(
  1. Map json_
)

Implementation

FanInfo.fromJson(core.Map json_)
    : this(
        speedRpm: json_.containsKey('speedRpm')
            ? json_['speedRpm'] as core.int
            : null,
      );