EndpointFile constructor

EndpointFile(
  1. 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');
  }
}