encode static method

String encode(
  1. List<int> value
)

Implementation

static String encode(List<int> value) {
  return base64.encode(value);
}