getManifestIcons method
Deprecated because it's not guaranteed that the returned icon is in fact the one used for PWA installation.
Implementation
@Deprecated('This command is deprecated')
Future<String> getManifestIcons() async {
var result = await _client.send('Page.getManifestIcons');
return result['primaryIcon'] as String;
}