update method

Future<void> update(
  1. Map<FieldPath, dynamic> data
)

Updates fields in the document referred to by this DocumentReferencePlatform.

Values in data may be of any supported Firestore type as well as special sentinel FieldValuePlatform type.

If no document exists yet, the update will fail.

Implementation

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