FileSource constructor

FileSource(
  1. String path
)

Implementation

FileSource(this.path) {
  if (kIsWeb) {
    throw UnsupportedError('File sources are not supported on web platform');
  }
  if (path.isEmpty) {
    throw ArgumentError('File path cannot be empty');
  }
  if (!path.startsWith(_pathSeparator)) {
    throw ArgumentError('File path must be absolute (start with $_pathSeparator)');
  }
}