get method
Get all records values.
Implementation
Future<List<V?>> get(DatabaseClient client) async => (await getSnapshots(
client,
)).map((snapshot) => snapshot?.value).toList(growable: false);
Get all records values.
Future<List<V?>> get(DatabaseClient client) async => (await getSnapshots(
client,
)).map((snapshot) => snapshot?.value).toList(growable: false);