update method

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

Updates fields in the document referred to by documentPath. The update will fail if applied to a document that does not exist.

Implementation

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