adding packages

This commit is contained in:
2026-01-15 14:38:46 -08:00
parent ef86e3ab6a
commit 6869cf47e5
5253 changed files with 726695 additions and 34 deletions
@@ -0,0 +1,26 @@
import 'classes/index.dart';
class FbFirestore {
FbFirestore._();
static Future<List<FbDocumentSnapshot>> getDocs(String path) {
throw 'Platform Not Supported';
}
static Future editDoc(String path, Map<String, dynamic> data,
{bool update = false}) {
throw 'Platform Not Supported';
}
static Future addDoc(String path, Map<String, dynamic> data) {
throw 'Platform Not Supported';
}
static Future deleteDoc(String path) {
throw 'Platform Not Supported';
}
static Future<FbDocumentSnapshot> getDoc(String path) {
throw 'Platform Not Supported';
}
}