EndpointFile constructor
EndpointFile(
- String path
Creates an endpoint file manager for path.
Implementation
EndpointFile(this.path) {
if (path.isEmpty) {
throw ArgumentError.value(path, 'path', 'Path cannot be empty');
}
}