loadFile method

Future<void> loadFile(
  1. String absoluteFilePath
)

Loads the file located at the specified absoluteFilePath.

The absoluteFilePath parameter should contain the absolute path to the file as it is stored on the device. For example: /Users/username/Documents/www/index.html.

Throws an ArgumentError if the absoluteFilePath does not exist.

Implementation

Future<void> loadFile(
  String absoluteFilePath,
) {
  assert(absoluteFilePath.isNotEmpty);
  return _webViewPlatformController.loadFile(absoluteFilePath);
}