Event constructor
Event({})
Implementation
Event({
required this.type,
this.metadata,
this.createTimestamp = 0,
this.payload,
this.data,
}) {
if (createTimestamp == 0) {
createTimestamp = DateTime.now().millisecondsSinceEpoch ~/ 1000;
}
}