isPwaInstalled static method

bool isPwaInstalled()

Implementation

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