Files
2024-07-10 14:00:10 +05:30

19 lines
407 B
Dart

/// This is the model to transfer the message from one device to another.
class Payload {
String id = '';
String sender = '';
String receiver = '';
String message = '';
String timestamp = '';
bool broadcast = true;
String type = 'Payload';
Payload(this.id, this.sender, this.receiver, this.message,this.timestamp,);
}
class Ack {
String id = '';
String type = "Ack";
Ack(this.id);
}