SecurityRoot.create constructor
SecurityRoot.create(
- Uint8List root
Implementation
factory SecurityRoot.create(Uint8List root) {
assert(root.length == blake2b256DigestSize, 'Invalid Security Root');
return SecurityRoot(root);
}