toSquareInches static method

double toSquareInches(
  1. double value
)

Converts the supplied Square Yards value to Square Inches

Implementation

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