1
0
Fork 0

Add steam message

This commit is contained in:
Florian RICHER (MrDev023) 2022-04-14 21:57:32 +02:00
parent 1351130f83
commit f2d808f5d3
8 changed files with 226 additions and 68 deletions

View file

@ -0,0 +1,13 @@
import 'package:uuid/uuid.dart';
enum StreamElementType { log, alert }
class StreamElement {
StreamElement(this.type, this.message) {
uuid = const Uuid().v4();
}
late final String uuid;
final String message;
final StreamElementType type;
}