freeSpace static method

Future<int?> freeSpace(
  1. String path
)

Bytes available to the app on the volume holding path.

Implementation

static Future<int?> freeSpace(String path) async => (await _call<num>("freeSpace", <String, Object?>{"path": path}))?.toInt();