deleteContent method

GemError deleteContent()

Delete the local content data for this item.

The operation is executed immediately and does not emit notifications. The return value indicates the outcome and possible failure reasons.

Returns

Implementation

GemError deleteContent() {
  final OperationResult resultString = objectMethod(
    pointerId,
    'ContentStoreItem',
    'deleteContent',
  );

  return GemErrorExtension.fromCode(resultString['result']);
}