bulkReset method

Future<bool> bulkReset({
  1. TransferType? txType,
})

Implementation

Future<bool> bulkReset({
  TransferType? txType,
}) async {
  final result = await sendCommand<BulkResetResult>(
    BulkResetBleCommandTx(txType: txType),
  );

  if (result == null || result.hasErrors) {
    return false;
  }
  return true;
}