askarScanFree function

ErrorCode askarScanFree(
  1. ScanHandle handle
)

Implementation

ErrorCode askarScanFree(ScanHandle handle) {
  final result = nativeAskarScanFree(handle.toInt());
  return ErrorCode.fromInt(result);
}