convert method

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

Converts input and returns the result of the conversion.

Implementation

@override
Uri? convert(XmlElement input) {
  return Uri.tryParse(input.innerText.trim());
}