UR constructor

UR(
  1. Uint8List _cborPayload, [
  2. String _type = 'bytes'
])

Implementation

UR(this._cborPayload, [this._type = 'bytes']) {
  if (!isURType(_type)) {
    throw InvalidTypeError();
  }
}