captureSnapshot method
Implementation
@override
@nonVirtual
AnyCompSnapshot<T> captureSnapshot() {
final snapshot = createSnapshot();
snapshot.componentSnapshots = _components
.map((c) => c.captureSnapshot())
.toList();
return snapshot;
}