getErrorDetail method

String getErrorDetail()

Returns the details of the last error.

Implementation

String getErrorDetail() {
  if (!available) {
    throw Exception("Tracker not created");
  }
  Pointer<Char> detail =
      ailiaTracker.ailiaTrackerGetErrorDetail(ppAiliaTracker!.value);
  return detail.cast<Utf8>().toDartString();
}