mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
8 lines
249 B
Dart
8 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");
|
|
}
|