LogFilter.custom constructor

const LogFilter.custom(
  1. bool predicate(
    1. LogEvent event
    )
)

custom implementation

Implementation

const factory LogFilter.custom(
  bool Function(LogEvent event) predicate,
) = LogFilterCustomImpl;