AccountLimit.fromXml constructor

AccountLimit.fromXml(
  1. XmlElement elem
)

Implementation

factory AccountLimit.fromXml(_s.XmlElement elem) {
  return AccountLimit(
    type: _s.extractXmlStringValue(elem, 'Type')!.toAccountLimitType(),
    value: _s.extractXmlIntValue(elem, 'Value')!,
  );
}