getMsgType method

String getMsgType()

Implementation

String getMsgType() {
  var json = decode();
  var msgType = json['msgType'].split('-').first;
  return msgType;
}