7 lines
95 B
Dart
7 lines
95 B
Dart
import 'dart:typed_data';
|
|
|
|
class PcmSound {
|
|
final Uint8List bytes;
|
|
PcmSound(this.bytes);
|
|
}
|