Cert constructor

const Cert({
  1. required List tree,
  2. required Uint8List signature,
  3. required CertDelegation? delegation,
})

Implementation

const Cert({
  required this.tree,
  required this.signature,
  required this.delegation,
});