require method
Looks up id or throws a DriveException.
Implementation
MountRecord require(String id) {
final r = store.mounts[id];
if (r == null) throw DriveException('no such mount: $id');
return r;
}
Looks up id or throws a DriveException.
MountRecord require(String id) {
final r = store.mounts[id];
if (r == null) throw DriveException('no such mount: $id');
return r;
}