bulkReset method
- 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;
}