fromCBOR static method

GsSignature fromCBOR(
  1. Uint8List cborPayload
)

Implementation

static GsSignature fromCBOR(Uint8List cborPayload) {
  CborValue cborValue = cbor.decode(cborPayload);
  String jsonData = const CborJsonEncoder().convert(cborValue);
  return fromDataItem(jsonData);
}