Converts input and returns the result of the conversion.
input
@override double? convert(XmlElement input) { try { return const TimeTypeCodec().decode(input.innerText.trim()); } catch (_) { return null; } }