convert method

  1. @override
Object? convert(
  1. List<int> input
)
override

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,
      );
}