base64_decode static method
Implementation
static Object? base64_decode(String? v) {
if (v == null || v.isEmpty) return null;
final bytes = base64Decode(v);
final stringChars = String.fromCharCodes(bytes);
final value = utf8.decode(stringChars.codeUnits);
return json.decode(value);
}