update android server notification

This commit is contained in:
csf
2022-03-30 17:31:32 +08:00
parent 4ca42faee9
commit d66939244e
6 changed files with 126 additions and 39 deletions

View File

@@ -123,8 +123,8 @@ class PlatformFFI {
});
}
static invokeMethod(String method) async {
return await toAndroidChannel.invokeMethod(method);
static invokeMethod(String method,[ dynamic arguments ]) async {
return await toAndroidChannel.invokeMethod(method,arguments);
}
}