fromSnapshot method
Populates the object from a DocumentSnapshot
.
Implementation
void fromSnapshot(DocumentSnapshot d) {
fromMap(d.data()! as Map<String, dynamic>);
}
Populates the object from a DocumentSnapshot
.
void fromSnapshot(DocumentSnapshot d) {
fromMap(d.data()! as Map<String, dynamic>);
}