Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-06-21 12:46:34 +08:00
parent 5f3f158932
commit 604d78ad6a
161 changed files with 4873 additions and 4770 deletions

View File

@@ -6,9 +6,9 @@ enum AudioQuality {
hiRes(30251, 'Hi-Res无损');
final int code;
final String description;
final String desc;
const AudioQuality(this.code, this.description);
const AudioQuality(this.code, this.desc);
static final _codeMap = {for (var i in values) i.code: i};

View File

@@ -29,8 +29,8 @@ enum CDNService {
String get code => name;
static final fromCode = values.byName;
final String description;
final String desc;
final String host;
const CDNService(this.description, [this.host = '']);
const CDNService(this.desc, [this.host = '']);
}

View File

@@ -13,9 +13,9 @@ enum VideoQuality {
super8k(127, '8K 超高清');
final int code;
final String description;
final String desc;
const VideoQuality(this.code, this.description);
const VideoQuality(this.code, this.desc);
static final _codeMap = {for (var i in values) i.code: i};