remove method

Future<void> remove()

Ensure the data at this location is deleted when the client is disconnected (due to closing the browser, navigating to a new page, or network issues).

remove() is equivalent to calling set(null);

Implementation

Future<void> remove() => set(null);