fromBase64 property

String? fromBase64

Convert base64 to String

Implementation

String? get fromBase64 {
  if (isNotNullOrEmpty) {
    var stringToBase64 = utf8.fuse(base64);
    return stringToBase64.decode(this);
  } else {
    return null;
  }
}