decode abstract method

String decode(
  1. String input
)

Decodes the input string using the codec's specific algorithm.

input The encoded string to be decoded. Returns the decoded plain text string.

Throws ArgumentError if the input is invalid for this codec. Throws FormatException if decoding fails due to format issues.

Implementation

String decode(String input);