toPounds static method

double toPounds(
  1. double value
)

Converts the supplied Kilograms value to Pounds

Implementation

static double toPounds(double value) => value * 2.20462;