toUSQuarts static method

double toUSQuarts(
  1. double value
)

Converts the supplied US Gallons value to US Quarts

Implementation

static double toUSQuarts(double value) => value * 4.0;