DocumentSnapshot<T extends Object?> class abstract

A DocumentSnapshot contains data read from a document in your FirebaseFirestore database.

The data can be extracted with the data property or by using subscript syntax to access a specific field.

Implementers
Annotations
  • @sealed

Constructors

DocumentSnapshot()

Properties

exists bool
Returns true if the document exists.
no setter
hashCode int
The hash code for this object.
no setterinherited
id String
This document's given ID for this snapshot.
no setter
metadata SnapshotMetadata
Metadata about this document concerning its source and if it has local modifications.
no setter
reference DocumentReference<T>
Returns the reference of this snapshot.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

data() → T?
Contains all the data of this document snapshot.
get(Object field) → dynamic
Gets a nested field by String or FieldPath from this DocumentSnapshot.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited
operator [](Object field) → dynamic
Gets a nested field by String or FieldPath from this DocumentSnapshot.