5 lines
97 B
Dart
5 lines
97 B
Dart
abstract interface class DeeplinkHandler {
|
|
bool canHandle(Uri uri);
|
|
|
|
void handle(Uri uri);
|
|
}
|