decodeBundle static method

String decodeBundle(
  1. String encoded
)

Implementation

static String decodeBundle(String encoded) {
  String charset = extractCharsetFromBundle(encoded);
  return decodeFromBase64(
      encoded: encoded.substring(charset.length), charset: charset);
}