import 'classes/index.dart'; class FbFirestore { FbFirestore._(); static Future> getDocs(String path) { throw 'Platform Not Supported'; } static Future editDoc(String path, Map data, {bool update = false}) { throw 'Platform Not Supported'; } static Future addDoc(String path, Map data) { throw 'Platform Not Supported'; } static Future deleteDoc(String path) { throw 'Platform Not Supported'; } static Future getDoc(String path) { throw 'Platform Not Supported'; } }