construct method
Construct from the supplied Map, only check for the keys we need.
Implementation
void construct(List data) {
if (data == null) {
return;
}
if (data.length != 3) {
return;
}
_powHash = MoacUtilities.safeParse(data[0]);
_seedHash = MoacUtilities.safeParse(data[1]);
_boundaryCondition = MoacUtilities.safeParse(data[2]);
}