base64Encoded property

String base64Encoded

Implementation

String get base64Encoded {
  try {
    final bytes = toBytes();
    return bytes == null ? this : base64Encode(bytes);
  } catch (e) {
    $debugPrint(e, "base64Encoded");
    return this;
  }
}