getFileSize method

Future<int> getFileSize(
  1. File file
)

Implementation

Future<int> getFileSize(web.File file) async {
  return file.size;
}