toKilobits static method

double toKilobits(
  1. double value
)

Converts the supplied Megabytes value to Kilobits

Implementation

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