overwrite abstract method

Future<String?> overwrite(
  1. String path,
  2. D data
)

Overwrites data at the specified path.

The path parameter identifies the location where data should be overwritten. The data parameter contains the new data that will replace any existing data.

Returns a Future that completes when the overwrite operation is finished. If the overwrite operation fails, the future will complete with an error.

Implementation

Future<String?> overwrite(String path, D data);