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