CustomerId constructor
CustomerId(
- String value
Implementation
CustomerId(this.value) {
if (value.trim().isEmpty) {
throw ArgumentError('CustomerId cannot be empty');
}
}
CustomerId(this.value) {
if (value.trim().isEmpty) {
throw ArgumentError('CustomerId cannot be empty');
}
}