convert method
Converts input and returns the result of the conversion.
Implementation
@override
Object? convert(List<int> input) {
return const CborDecoder()
.convert(input)
.toObject(
parseUri: _parseUri,
parseDateTime: _parseDateTime,
decodeBase64: _decodeBase64,
);
}