Partition constructor

Partition(
  1. String? namespace
)

Implementation

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