get method

Future<DocumentSnapshotPlatform> get(
  1. String documentPath
)

Reads the document referenced by the provided documentPath.

If the document changes whilst the transaction is in progress, it will be re-tried up to five times.

Implementation

Future<DocumentSnapshotPlatform> get(String documentPath) {
  throw UnimplementedError('get() is not implemented');
}