toSquareFeet static method

double toSquareFeet(
  1. double value
)

Converts the supplied Square Inches value to Square Feet

Implementation

static double toSquareFeet(double value) => value / 144.0;