enableCaching static method

Future<void> enableCaching()

Enables local caching for Firestore data.

Implementation

static Future<void> enableCaching() async {
    instance.settings = const Settings(persistenceEnabled: true);
}