mirror of
https://github.com/jagandeepbrar/lunasea.git
synced 2026-08-30 20:24:25 +00:00
13 lines
399 B
Dart
13 lines
399 B
Dart
import 'platform/quick_actions_stub.dart'
|
|
if (dart.library.io) 'platform/quick_actions_io.dart'
|
|
if (dart.library.html) 'platform/quick_actions_html.dart';
|
|
|
|
abstract class LunaQuickActions {
|
|
static bool get isSupported => isPlatformSupported();
|
|
factory LunaQuickActions() => getQuickActions();
|
|
|
|
Future<void> initialize();
|
|
void setActionItems();
|
|
void actionHandler(String action);
|
|
}
|