AggregateKeyInfo constructor

AggregateKeyInfo({
  1. required GroupKeyInfo group,
  2. required PublicSharesKeyInfo publicShares,
})

Implementation

AggregateKeyInfo({
  required this.group,
  required this.publicShares,
}) {
  validateGroupWithPublicShares(group, publicShares);
}