convert method

  1. @override
dynamic convert(
  1. String input
)
override

Converts input and returns the result of the conversion.

Implementation

@override
dynamic convert(String input) {
  var binary = base64Decode(input);
  return binaryCodec.decode(binary);
}