BLSPublicKeyAggregationResponse constructor

BLSPublicKeyAggregationResponse({
  1. String? publicKey,
  2. String? address,
})

Implementation

factory BLSPublicKeyAggregationResponse({
  $core.String? publicKey,
  $core.String? address,
}) {
  final _result = create();
  if (publicKey != null) {
    _result.publicKey = publicKey;
  }
  if (address != null) {
    _result.address = address;
  }
  return _result;
}