RangePartitioning.fromJson constructor

RangePartitioning.fromJson(
  1. Map json_
)

Implementation

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