toMegaBytes static method
- dynamic value
Implementation
static String toMegaBytes(value) {
return (double.parse(value) / 1000000).toStringAsFixed(2);
}
static String toMegaBytes(value) {
return (double.parse(value) / 1000000).toStringAsFixed(2);
}