toSizeInKB property

double get toSizeInKB

Implementation

double get toSizeInKB {
  if (this == null) throw (Exception('File Kosong'));

  int sizeInBytes = this!.lengthSync();
  return sizeInBytes / (1000);
}