mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-23 09:16:19 +01:00
9 lines
249 B
Dart
9 lines
249 B
Dart
|
import 'package:flutter/services.dart';
|
||
|
|
||
|
class Activity {
|
||
|
static Future<String?> consumeInitialRoute() =>
|
||
|
_methodChannel.invokeMethod("consumeInitialRoute");
|
||
|
|
||
|
static const _methodChannel = MethodChannel("com.nkming.nc_photos/activity");
|
||
|
}
|