createFileUrl method

Future<String> createFileUrl(
  1. dynamic htmlFile, {
  2. required int viewId,
})

Create a temporary URL to the passed HTML file.

When finished, the URL should be released using releaseFileUrl().

Implementation

Future<String> createFileUrl(dynamic htmlFile, {required int viewId}) async {
  throw UnimplementedError('createFileUrl');
}