toUSQuarts static method

double toUSQuarts(
  1. double value
)

Converts the supplied US Pints value to US Quarts

Implementation

static double toUSQuarts(double value) => value / 2.0;