RecordsEvent.fromXml constructor

RecordsEvent.fromXml(
  1. XmlElement elem
)

Implementation

factory RecordsEvent.fromXml(_s.XmlElement elem) {
  return RecordsEvent(
    payload: _s.extractXmlUint8ListValue(elem, 'Payload'),
  );
}