hash static method

int hash(
  1. Box box
)
override

The hash code for box.

Implementation

static int hash(Box box) => Object.hash(
      box.minX,
      box.minY,
      box.minZ,
      box.minM,
      box.maxX,
      box.maxY,
      box.maxZ,
      box.maxM,
    );