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