encode method
Enodes the ZooperAudioFile to a List of int
Implementation
List<int> encode() {
return <int>[
...id3v2?.encode() ?? [],
...audioData.audioData,
...id3v1?.encode() ?? [],
];
}
Enodes the ZooperAudioFile to a List of int
List<int> encode() {
return <int>[
...id3v2?.encode() ?? [],
...audioData.audioData,
...id3v1?.encode() ?? [],
];
}