base64Encode static method

String base64Encode(
  1. List<int> source
)

Implementation

static String base64Encode(List<int> source) {
  final string = converter.base64.encode(source);

  return string;
}