convert method

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

Converts input and returns the result of the conversion.

Implementation

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