Remove enum prefixes

This commit is contained in:
Adam Gastineau 2026-08-14 12:13:17 -07:00
parent 9d0daefa84
commit cf07cb11e1

View file

@ -132,8 +132,8 @@ class HeaderKeyValueSettings extends StatelessWidget {
border: const OutlineInputBorder(),
),
autocorrect: false,
smartDashesType: SmartDashesType.disabled,
smartQuotesType: SmartQuotesType.disabled,
smartDashesType: .disabled,
smartQuotesType: .disabled,
onChanged: (headerKey) {
header.key = headerKey;
},
@ -162,8 +162,8 @@ class HeaderKeyValueSettings extends StatelessWidget {
border: const OutlineInputBorder(),
),
autocorrect: false,
smartDashesType: SmartDashesType.disabled,
smartQuotesType: SmartQuotesType.disabled,
smartDashesType: .disabled,
smartQuotesType: .disabled,
onChanged: (headerValue) {
header.value = headerValue;
},