Partition constructor

Partition(
  1. String? namespace
)

Implementation

Partition(this.namespace) {
  if (namespace == '') {
    throw ArgumentError("'namespace' must not be empty");
  }
}