toKilobits static method

double toKilobits(
  1. double value
)

Converts the supplied Kilobytes value to Kilobits

Implementation

static double toKilobits(double value) => value * 8.0;