getFPSDeviceInfo method

  1. @override
Future<FPSDeviceInfo> getFPSDeviceInfo()
override

Implementation

@override
Future<FPSDeviceInfo> getFPSDeviceInfo() async {
  final ret = await methodChannel
      .invokeMethod(PluginFunctionInterfaceConstants.FPS_GET_FPS_DEVICE_INFO);
  return FPSDeviceInfo.fromJSON(json.decode(ret));
}