addCompilationCache method
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,
});
}