getLogs method

Future<List<Log>> getLogs(
  1. EventFilter filter
)

Returns the List of Log matching the filter.

Keep in mind that many backends will discard old events, and that requests which are too broad may get dropped as they require too many resources to execute the query.

Implementation

Future<List<Log>> getLogs(EventFilter filter) async =>
    (await call<List>('getLogs')).cast<Log>();