filterFunction property
Function which is used to filter reports. If filterFunction is empty then all reports will be passed to handlers. To mark given Report as valid, filterFunction should return true, otherwise return false.
Implementation
final bool Function(Report report)? filterFunction;