ToBase64 property

String ToBase64

Implementation

String get ToBase64 {
  var bytes = utf8.encode(this);
  return base64.encode(bytes);
}