isCompleted property

bool get isCompleted

Whether the content item is fully downloaded.

Returns

  • true when the download is complete, otherwise false.

Implementation

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

  return resultString['result'];
}