base64Encode function Null safety

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);