mod: format code

This commit is contained in:
guozhigq
2024-01-07 12:58:24 +08:00
parent 7a71798055
commit fa8fd42e9a
104 changed files with 1077 additions and 1032 deletions

View File

@ -22,7 +22,7 @@ extension PlaySpeedExtension on PlaySpeed {
'1.75',
'2.0',
];
get description => _descList[index];
String get description => _descList[index];
static final List<double> _valueList = [
0.25,
@ -34,6 +34,6 @@ extension PlaySpeedExtension on PlaySpeed {
1.75,
2.0,
];
get value => _valueList[index];
get defaultValue => _valueList[3];
double get value => _valueList[index];
double get defaultValue => _valueList[3];
}