yBase64Decode function

String yBase64Decode(
  1. String content
)

base64解码

Implementation

String yBase64Decode(String content) {
  return _getPlugin()!.base64_decode(content);
}