menu
codable_dart package
documentation
csv.dart
CsvDecodable<T>
fromCsvBytes method
fromCsvBytes method
dark_mode
light_mode
fromCsvBytes
method
List
<
T
>
fromCsvBytes
(
List
<
int
>
bytes
)
Implementation
List<T> fromCsvBytes(List<int> bytes) { return CsvDecoder.decodeBytes(bytes, list()); }
codable_dart package
documentation
csv
CsvDecodable<T>
fromCsvBytes method
CsvDecodable extension on
Decodable
<
T
>