You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This seems a very strange thing. The CBOR bytes [0-255] range are decoded as List<int>, which 1) are super wasteful and 2) can represent much larger values than [0-255]. Any particular reason instead of using Uint8List?
This seems a very strange thing. The CBOR bytes [0-255] range are decoded as
List<int>, which 1) are super wasteful and 2) can represent much larger values than [0-255]. Any particular reason instead of usingUint8List?