PartitionSpec.fromJson constructor

PartitionSpec.fromJson(
  1. Map json_
)

Implementation

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