list method

Implementation

Future<List<AccountSummary>> list() async {
  if (_ephemeral || _db == null) return [];
  return _db.listAccounts();
}