toGallons static method

double toGallons(
  1. double value
)

Converts the supplied Fluid Ounces value to Gallons

Implementation

static double toGallons(double value) => value / 160.0;