getAppLogInstance static method
Implementation
static Future<ApplogInstance?> getAppLogInstance() async {
final result = await NativeClassUtils.nativeStaticCall(
$namespace,
'getAppLogInstance',
[],
);
return packObject(result, () => ApplogInstance());
}