isCompleted property

bool get isCompleted

Check if the item is completely downloaded.

Returns

  • True if the download is completed, false otherwise

Throws

  • An exception if it fails.

Implementation

bool get isCompleted {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'ContentStoreItem',
    'isCompleted',
  );

  return resultString['result'];
}