fromMessage static method
Implementation
static DataMessage fromMessage(Map<String, dynamic> msg) {
return DataMessage(
topic: msg['topic'],
from: msg['from'],
head: msg['head'],
ts: msg['ts'],
seq: msg['seq'],
content: msg['content'],
noForwarding: msg['noForwarding'] ?? false,
hi: msg['hi'],
);
}