toCubicFeet static method

double toCubicFeet(
  1. double value
)

Converts the supplied Cubic Inches value to Cubic Feet

Implementation

static double toCubicFeet(double value) => value / 1728.0;