convert method

  1. @override
Depth? convert(
  1. XmlElement input
)
override

Converts input and returns the result of the conversion.

Implementation

@override
Depth? convert(XmlElement input) =>
    Depth.fromName(input.innerText.trim().toLowerCase());