13 lines
253 B
Dart
13 lines
253 B
Dart
import 'dart:js_interop';
|
|
|
|
@JS('promptInstall')
|
|
external void jsPromptInstall();
|
|
|
|
@JS('isInstallPromptAvailable')
|
|
external bool jsIsInstallPromptAvailable();
|
|
|
|
void triggerWebInstall() {
|
|
if (jsIsInstallPromptAvailable()) {
|
|
jsPromptInstall();
|
|
}
|
|
}
|