getTotalDiskSpaceForPath method

  1. @override
Future<double> getTotalDiskSpaceForPath(
  1. String path
)
override

Implementation

@override
Future<double> getTotalDiskSpaceForPath(String path) async {
  final totalSpace = await methodChannel
      .invokeMethod<double>('getTotalDiskSpaceForPath', {'path': path});
  return totalSpace!;
}