coefficient method

Uint8List coefficient(
  1. PublicKey key
)

Implementation

Uint8List coefficient(PublicKey key) {
  final coeff = _computeCoefficient(_keyAggList, key.bytes, _secondKey);
  return bigIntToBytes(coeff, 32);
}