fromCsv abstract method

Map<String, DynamicMap> fromCsv(
  1. List<List> csv
)

CSV data List can be retrieved in NoSqlDatabase Map.

Specify the ID of the document as the key of Map and the data of the document as the value in DynamicMap.

CSVのデータListNoSqlDatabaseで取得可能なMap

MapのキーにドキュメントのIDを指定し、値にドキュメントのデータをDynamicMapで指定します。

Implementation

Map<String, DynamicMap> fromCsv(List<List<dynamic>> csv);