getFirmwareVersion method

Future<bool?> getFirmwareVersion()

Get the firmware version from the connected device. The following states can be emitted on the statusStream in response:

iOS Note: Not available on iOS.

Implementation

Future<bool?> getFirmwareVersion() async {
  return await _channel.invokeMethod(getFirmwareVersionMethod);
}