rootId property

String rootId

Implementation

String get rootId {
  if (this is BaseMessage) {
    return (this as BaseMessage).messageId.toString();
  } else if (this is NotificationMessage) {
    return (this as NotificationMessage).notificationId;
  }
  throw MalformedDataException();
}