addCompilationCache method

Future<void> addCompilationCache(
  1. String url,
  2. String data
)

Seeds compilation cache for given url. Compilation cache does not survive cross-process navigation. data Base64-encoded data

Implementation

Future<void> addCompilationCache(String url, String data) async {
  await _client.send('Page.addCompilationCache', {'url': url, 'data': data});
}