decodeXmlFromBase64 method

String decodeXmlFromBase64(
  1. String base64Str
)

Implementation

String decodeXmlFromBase64(String base64Str) {
  final bytes = base64.decode(base64Str);
  return utf8.decode(bytes);
}