close2 / csv

A dart csv to list codec / converter
MIT License
98 stars 24 forks source link

Exclude header #35

Closed sam-tj closed 4 years ago

sam-tj commented 4 years ago

Is there any way to exclude header from csv file while converting it into list?

close2 commented 4 years ago

No not really. But you can use .skip(1) on your list to get an iterable which skips the header.