Gets the size of a file in bytes
@override Future<int> getFileSize(String filePath) async { final file = File(filePath); return await file.length(); }