isCompleted property
Check if the item is completely downloaded.
Returns
- True if the download is completed, false otherwise
Implementation
bool get isCompleted {
final OperationResult resultString = objectMethod(
_pointerId,
'ContentStoreItem',
'isCompleted',
);
return resultString['result'];
}