construct method

void construct(
  1. List<String>? data
)

Construct from the supplied list.

Implementation

void construct(List<String>? data) {
  if (data == null) {
    return;
  }
  if (data.length != 3) {
    return;
  }
  _powHash = EthereumData.fromString(data[0]);
  _seedHash = EthereumData.fromString(data[1]);
  _boundaryCondition = EthereumData.fromString(data[2]);
}