absFloor method

int absFloor(
  1. dynamic n
)

Implementation

int absFloor(n) => (n < 0 ? n.ceil() : n.floor());