Returns size the File in bytes. Returns 0 if the File does not exist.
0
FutureOr<int> length_() async { final file = File(clean(path)); if (await file.exists_()) { return file.length(); } return 0; }