OnEnterRule constructor

OnEnterRule({
  1. RegExp? beforeText,
  2. RegExp? afterText,
  3. RegExp? previousLineText,
  4. EnterAction? action,
})

Implementation

factory OnEnterRule({
  _i7.RegExp? beforeText,
  _i7.RegExp? afterText,
  _i7.RegExp? previousLineText,
  _i3.EnterAction? action,
}) =>
    OnEnterRule._(
      beforeText: beforeText ?? _i6.undefined,
      afterText: afterText ?? _i6.undefined,
      previousLineText: previousLineText ?? _i6.undefined,
      action: action ?? _i6.undefined,
    );