getVolumesUUIDs method
Implementation
@override
Future<List<String>?> getVolumesUUIDs(
bool includePrimary, bool includeRemoveable) async {
List<dynamic>? futureOfList = await methodChannel
.invokeMethod<List<dynamic>?>('getVolumesUUIDs', {
'includePrimary': includePrimary,
'includeRemoveable': includeRemoveable
});
return (futureOfList)!.cast<String>();
}