选择音频

This commit is contained in:
toly
2023-05-03 08:32:17 +08:00
parent 3ea5729743
commit 1893c43a9f
3 changed files with 104 additions and 4 deletions

View File

@@ -0,0 +1,6 @@
class AudioOption{
final String name;
final String src;
const AudioOption(this.name, this.src);
}