convertMbToKb static method

double convertMbToKb(
  1. int byte
)

Implementation

static double convertMbToKb(int byte) {
  return byte * 1000.0;
}