This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:cloud_firestore/cloud_firestore.dart'; | |
| class AssetService { | |
| final FirebaseFirestore _firestore = FirebaseFirestore.instance; | |
| final String collectionName = 'assets'; | |
| // Sample data | |
| final List<Map<String, dynamic>> initialData = [ | |
| { | |
| "id": "asset001", |