get method

Future<DocumentSnapshotPlatform> get([
  1. GetOptions options = const GetOptions()
])

Reads the document referenced by this DocumentReferencePlatform.

If no document exists, the read will return null.

Implementation

Future<DocumentSnapshotPlatform> get(
    [GetOptions options = const GetOptions()]) async {
  throw UnimplementedError('get() is not implemented');
}