Handler constructor

Handler({
  1. required bool matchFunc(
    1. ProtocolID
    ),
  2. required HandlerFunc handle,
  3. required ProtocolID addName,
})

Implementation

Handler({
  required this.matchFunc,
  required this.handle,
  required this.addName,
});