RangePartitioningRange.fromJson constructor

RangePartitioningRange.fromJson(
  1. Map json_
)

Implementation

RangePartitioningRange.fromJson(core.Map json_)
  : this(
      end: json_['end'] as core.String?,
      interval: json_['interval'] as core.String?,
      start: json_['start'] as core.String?,
    );