Update.fromCborBytes constructor

Update.fromCborBytes(
  1. List<int> cborBytes
)

Implementation

factory Update.fromCborBytes(List<int> cborBytes) {
  return Update.deserialize(
      CborObject.fromCbor(cborBytes).as<CborListValue>("Update"));
}