CsvRowError class

A single row that failed structural validation during parseCsv, kept so the import can continue and report every bad row at once instead of aborting on the first one.

Constructors

CsvRowError(int lineNumber, String line, String message)
Records that line at 1-based lineNumber failed for message. Audited: 2026-06-12 11:26 EDT
const

Properties

hashCode int
The hash code for this object.
no setterinherited
line String
The raw source line that failed.
final
lineNumber int
1-based line number in the original input (blank lines are counted, so this maps back to what the user sees in their file).
final
message String
Human-readable reason the row was rejected.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited