description property

  1. @override
String get description
override

A description of the transformer.

Example: 'Strip text matching provided patterns'

Implementation

@override
String get description {
  switch (action) {
    case FullMatchAction.drop:
      return "Drop messages that exactly match the provided pattern.";
  }
}