append abstract method

Future<void> append(
  1. String uid, {
  2. T? data,
})

Add a new document to the current collection based on uid.

It is possible to specify data to be added to the document by giving data.

Implementation

Future<void> append(String uid, {T? data});