disableNetwork method
Instructs FirebaseFirestore to disable the network for the instance.
Once disabled, any writes will only resolve once connection has been restored. However, the local database will still be updated and any listeners will still trigger.
Implementation
Future<void> disableNetwork() {
return _delegate.disableNetwork();
}