isPwaInstalled static method
Implementation
static bool isPwaInstalled() {
final displayMode = js.context.callMethod('matchMedia', ['(display-mode: standalone)']);
return displayMode['matches'] == true || js.context['navigator']['standalone'] == true;
}