RangePartitioning.fromJson constructor

RangePartitioning.fromJson(
  1. Map json_
)

Implementation

RangePartitioning.fromJson(core.Map json_)
  : this(
      field: json_['field'] as core.String?,
      range:
          json_.containsKey('range')
              ? RangePartitioningRange.fromJson(
                json_['range'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );