io function

String? io({
  1. bool errorOnNotFound = false,
})

Handles operations that require dart:io. Not supposed to be called, as io is a package utilizing dart:io.

Implementation

String? io({bool errorOnNotFound = false}) {
  throw Exception(
      "Platforms importing null.dart are not supposed to use io().");
}