get method

Future<List<V?>> get(
  1. DatabaseClient client
)

Get all records values.

Implementation

Future<List<V?>> get(DatabaseClient client) async =>
    (await getSnapshots(client))
        .map((snapshot) => snapshot?.value)
        .toList(growable: false);