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