num easeInBounce(num ratio)

Source

static num easeInBounce(num ratio) {
  return 1.0 - easeOutBounce(1.0 - ratio);
}