getSync method

List<V?> getSync(
  1. DatabaseClient client
)

Get all records values synchronously.

Implementation

List<V?> getSync(DatabaseClient client) => (getSnapshotsSync(client))
    .map((snapshot) => snapshot?.value)
    .toList(growable: false);