toSquareInches static method

double toSquareInches(
  1. double value
)

Converts the supplied Square Feet value to Square Inches

Implementation

static double toSquareInches(double value) => value * 144.0;