getMemoryInfo static method

Future<Map<String, dynamic>?> getMemoryInfo()

获取内存信息

Implementation

static Future<Map<String, dynamic>?> getMemoryInfo() async {
  if (!_isRegistered) return null;
  return await NativeCrashService.instance.getNativeMemoryInfo();
}