command property
String
get
command
Implementation
String get command {
switch (this) {
case NyxContainer.avi:
return 'avi';
case NyxContainer.mp4:
return 'mp4';
case NyxContainer.mkv:
return 'mkv';
case NyxContainer.mov:
return 'mov';
case NyxContainer.webM:
return 'webm';
case NyxContainer.ogg:
return 'ogg';
case NyxContainer.wav:
return 'wav';
case NyxContainer.flac:
return 'flac';
case NyxContainer.mp3:
return 'mp3';
case NyxContainer.aac:
return 'aac';
}
}