toString method

String toString ()

Returns a string representation of this object.

Implementation

String toString() {
  final String ret = "Moac Work :" +
      "\n" +
      "  Pow Hash : $powHash" +
      "\n" +
      "  Seed Hash : $seedHash" +
      "\n" +
      "  Boundary Condition : $boundaryCondition" +
      "\n";

  return ret;
}