syncStreams property
Iterable<SyncStreamStatus> ?
get
syncStreams
All sync streams currently being tracked in the database.
This returns null when the database is currently being opened and we don't have reliable information about all included streams yet.
Implementation
Iterable<SyncStreamStatus>? get syncStreams {
return _internalSubscriptions?.map((subscription) {
return SyncStreamStatus._(subscription, downloadProgress);
});
}