request method

  1. @override
Future<List<ClosingLedgerContact>> request(
  1. void _
)

Implementation

@override
Future<List<ClosingLedgerContact>> request(void _) async {
  final snap =
      await DbStoresClosings.closingcontactsStoreDb.find(_database.dbC);
  return snap.map((e) => ClosingLedgerContact.fromMap(e.value)).toList();
}