toKilobytes static method

double toKilobytes(
  1. double value
)

Converts the supplied Kibibits value to Kilobytes

Implementation

static double toKilobytes(double value) => value / 7.8125;