RuleState.internal constructor

const RuleState.internal({
  1. Version? since,
})

Initializes a state that marks an analysis rule as for internal (Dart SDK) use only.

Implementation

const RuleState.internal({this.since})
  : _type = _RuleStateType.internal,
    replacedBy = null;