file_sizes 1.0.0 copy "file_sizes: ^1.0.0" to clipboard
file_sizes: ^1.0.0 copied to clipboard

outdated

Human readable size of the file.

example/main.dart

import 'package:file_sizes/file_sizes.dart';

void main() {
  int baseNumber = 1024;

  /// Get KiloBytes
  String bytes = FileSize.getSize(baseNumber);
  print(bytes);

  /// Get MegaBytes
  String megabytes = FileSize.getSize(baseNumber * baseNumber);
  print(megabytes);
}