fileSize method

Future<int> fileSize(
  1. String path
)

Get file size in bytes.

Implementation

Future<int> fileSize(String path) =>
    _sendWithRetry('fileSize', {'path': path});