getDeviceSpecificCommand method

Future getDeviceSpecificCommand(
  1. dynamic command
)

Sends a device-specific raw command and receives the response.

Use only when you know the device's proprietary command set.

Implementation

Future<dynamic> getDeviceSpecificCommand(dynamic command) {
  return _get(CapturePropertyIds.deviceSpecific, CapturePropertyTypes.array, command);
}