dart / 2 / dart-convert / base64encode.html

base64Encode function

String base64Encode(
  1. List<int> bytes
)

Encodes bytes using base64 encoding.

Shorthand for base64.encode(bytes). Useful if a local variable shadows the global base64 constant.

Implementation

String base64Encode(List<int> bytes) => base64.encode(bytes);

© 2012 the Dart project authors
Licensed under the BSD 3-Clause "New" or "Revised" License.
https://api.dart.dev/stable/2.18.5/dart-convert/base64Encode.html