decodeSig function

Uint8List decodeSig(
  1. String encoded
)

Implementation

Uint8List decodeSig(String encoded) {
  return Uint8List.fromList(B64urlEncRfc7515.decode(encoded));
}