ChartHistogramRule.fromJson constructor

ChartHistogramRule.fromJson(
  1. Map json_
)

Implementation

ChartHistogramRule.fromJson(core.Map json_)
  : this(
      intervalSize: (json_['intervalSize'] as core.num?)?.toDouble(),
      maxValue: (json_['maxValue'] as core.num?)?.toDouble(),
      minValue: (json_['minValue'] as core.num?)?.toDouble(),
    );