fromMessage static method
Implementation
static InfoMessage fromMessage(Map<String, dynamic> msg) {
return InfoMessage(
topic: msg['topic'],
from: msg['from'],
what: msg['what'],
seq: msg['seq'],
);
}
static InfoMessage fromMessage(Map<String, dynamic> msg) {
return InfoMessage(
topic: msg['topic'],
from: msg['from'],
what: msg['what'],
seq: msg['seq'],
);
}