RuleState.stable constructor

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

Initializes a state that marks an analysis rule as stable.

Implementation

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