encode static method

B64 encode(
  1. List<int> blob
)

Implementation

static B64 encode(List<int> blob) {
  return B64(base64Url.encode(blob));
}