refactor: Remove unused feature parameter

The `unused_element_parameter` lint warning for the `feature`
parameter was causing failures in the GitHub Actions CI workflow.
This commit is contained in:
Jason Huang
2025-06-23 13:54:26 +08:00
parent b263ef0d69
commit 048e42c700

View File

@ -27,13 +27,13 @@ mixin ELinuxRequiredArtifacts on FlutterCommand {
/// See: [DevelopmentArtifact] in `cache.dart`
class ELinuxDevelopmentArtifact implements DevelopmentArtifact {
// ignore: unused_element
const ELinuxDevelopmentArtifact._(this.name, {this.feature});
const ELinuxDevelopmentArtifact._(this.name);
@override
final String name;
@override
final Feature? feature;
final Feature? feature = null;
static const DevelopmentArtifact elinux = ELinuxDevelopmentArtifact._('elinux');
}