MessageMarkerElement constructor

MessageMarkerElement(
  1. String? _markerName, [
  2. String? _id
])

Implementation

MessageMarkerElement(this._markerName, [this._id]) : super() {
  if (_id != null) {
    addAttribute(XmppAttribute('id', _id));
  }
}