instance property

FirefastStore get instance

Gets the singleton instance of FirefastStore.

If the instance doesn't exist, it creates one using the default FirebaseFirestore instance.

Returns a FirefastStore instance.

Implementation

static FirefastStore get instance =>
    _instance ?? (_instance = FirefastStore(FirebaseFirestore.instance));