getVolumeFiles method
Implementation
@override
Future<List<FileInfo>?> getVolumeFiles(String uuid) async {
List<dynamic>? futureOfList = await methodChannel
.invokeMethod<List<dynamic>?>('getVolumeFiles', {'uuid': uuid});
return _convert2VolumeFiles(futureOfList);
}