toSquareYards static method

double toSquareYards(
  1. double value
)

Converts the supplied Square Inches value to Square Yards

Implementation

static double toSquareYards(double value) => value / 1296.0;