9 lines
256 B
Dart
9 lines
256 B
Dart
// relates to a pangea representation event
|
|
// the matrix even fits the form of a regular matrix audio event
|
|
// but with something to distinguish it as a pangea audio event
|
|
|
|
import 'package:matrix/matrix.dart';
|
|
|
|
class PangeaAudioEvent {
|
|
Event? _event;
|
|
}
|