convertKbToMb method

String convertKbToMb(
  1. int kb
)

Implementation

String convertKbToMb(int kb) {
  final mb = kb / 1024;
  return mb.toStringAsFixed(2);
}