encode method

List<int> encode()

Enodes the ZooperAudioFile to a List of int

Implementation

List<int> encode() {
  return <int>[
    ...id3v2?.encode() ?? [],
    ...audioData.audioData,
    ...id3v1?.encode() ?? [],
  ];
}