toPints static method

double toPints(
  1. double value
)

Converts the supplied Fluid Ounces value to Pints

Implementation

static double toPints(double value) => value / 20.0;