CSVInput class

Contains information about the comma-separated value (CSV) file to select from.

Constructors

CSVInput({String? comments, String? fieldDelimiter, FileHeaderInfo? fileHeaderInfo, String? quoteCharacter, String? quoteEscapeCharacter, String? recordDelimiter})
CSVInput.fromJson(Map<String, dynamic> json)
factory

Properties

comments String?
A single character used to indicate that a row should be ignored when the character is present at the start of that row.
final
fieldDelimiter String?
A value used to separate individual fields from each other within a record.
final
fileHeaderInfo FileHeaderInfo?
Describes the first line of input. Valid values are None, Ignore, and Use.
final
hashCode int
The hash code for this object.
no setterinherited
quoteCharacter String?
A value used as an escape character where the field delimiter is part of the value.
final
quoteEscapeCharacter String?
A single character used for escaping the quotation-mark character inside an already escaped value.
final
recordDelimiter String?
A value used to separate individual records from each other.
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
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

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