filesize
filesize copied to clipboard
Why size is not int?
filesize(dynamic size, [int round = 2]) {
int _size;
try {
_size = int.parse(size.toString());
} catch (e) {
throw ArgumentError('Can not parse the size parameter: $e');
}
}