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