getLogs method

Future<List<FilterEvent>> getLogs(
  1. FilterOptions options
)

Implementation

Future<List<FilterEvent>> getLogs(FilterOptions options) async {
  final logs = await _client.getLogs(options.filter);
  return logs.map((l) => Web3Log(l)).toList();
}