RuleState.removed constructor

  1. @Deprecated('Use RemovedAnalysisRule instead')
const RuleState.removed({
  1. Version? since,
  2. String? replacedBy,
})

Initializes a state that identifies an analysis rule as having been removed.

Deprecated; clients should use RemovedAnalysisRule instead.

Implementation

@Deprecated('Use RemovedAnalysisRule instead')
const RuleState.removed({this.since, this.replacedBy})
  : _type = _RuleStateType.removed;