CSVMappingParameters class
Provides additional mapping information when the record format uses delimiters, such as CSV. For example, the following sample records use CSV format, where the records use the '\n' as the row delimiter and a comma (",") as the column delimiter:
"name1", "address1"
"name2", "address2"
Constructors
- CSVMappingParameters({required String recordColumnDelimiter, required String recordRowDelimiter})
-
CSVMappingParameters.fromJson(Map<
String, dynamic> json) -
factory
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- recordColumnDelimiter → String
-
Column delimiter. For example, in a CSV format, a comma (",") is the typical
column delimiter.
final
- recordRowDelimiter → String
-
Row delimiter. For example, in a CSV format, '\n' is the typical row
delimiter.
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