filesize icon indicating copy to clipboard operation
filesize copied to clipboard

Why size is not int?

Open cv0cv0 opened this issue 3 years ago • 0 comments

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');
  }
}

cv0cv0 avatar Aug 26 '21 09:08 cv0cv0