toString method

String toString ()

Returns a string representation of this object.

Implementation

String toString() {
  final String ret = "Moac Log :" +
      "\n" +
      "  Removed : $removed" +
      "\n" +
      "  Log Index : $logIndex" +
      "\n" +
      "  Transaction Index : $transactionIndex" +
      "\n" +
      "  Transaction Hash: $transactionHash" +
      "\n" +
      "  Block Number: $blockNumber" +
      "\n" +
      "  Block Hash : $blockHash" +
      "\n" +
      "  Address : $address" +
      "\n";
  return ret;
}