AbsolutePath constructor

AbsolutePath(
  1. String value
)

Validates and creates a AbsolutePath value.

Implementation

factory AbsolutePath(String value) {
  AcpAbsolutePath(value);
  return AbsolutePath._(value);
}