update method

void update(
  1. String documentPath,
  2. Map<String, dynamic> data
)

Updates fields in the document referred to by document.

If the document does not exist, the operation will fail.

Implementation

void update(
  String documentPath,
  Map<String, dynamic> data,
) {
  throw UnimplementedError('update() is not implemented');
}