docs property
List<DocumentSnapshot>
get
docs
Non-null list of all the documents.
Implementation
List<DocumentSnapshot> get docs => jsObject.docs
// explicitly typing the param as dynamic to work-around
// https://github.com/dart-lang/sdk/issues/33537
// ignore: unnecessary_lambdas
.map((dynamic e) => DocumentSnapshot.getInstance(e))
.toList();