CollectionImport constructor

CollectionImport({
  1. required String path,
  2. required FirestorePath firestorePath,
  3. required String? idFieldName,
  4. required List<Map<String, dynamic>> documents,
})

Creates a collection import.

Implementation

CollectionImport({
  required this.path,
  required this.firestorePath,
  required this.idFieldName,
  required this.documents,
});