PartitionedColumn.fromJson constructor

PartitionedColumn.fromJson(
  1. Map json_
)

Implementation

PartitionedColumn.fromJson(core.Map json_)
    : this(
        field:
            json_.containsKey('field') ? json_['field'] as core.String : null,
      );