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