convertFromBase64UrlSafeToBase64 static method
Implementation
static convertFromBase64UrlSafeToBase64(String stringToConvert) {
List<int> bytes = _base64UrlToBytes(stringToConvert);
return base64Encode(bytes);
}
static convertFromBase64UrlSafeToBase64(String stringToConvert) {
List<int> bytes = _base64UrlToBytes(stringToConvert);
return base64Encode(bytes);
}