base64Decode static method

List<int> base64Decode(
  1. String source
)

Implementation

static List<int> base64Decode(String source) {
  final chars = converter.base64.decode(source);

  return chars;
}