updateCategory method

void updateCategory(
  1. LandmarkCategory category
)

Update the specified category.

The category object must belong to this landmark store. No fields of the parameter will be updated by this call.

Parameters

  • IN category The category to be updated

Throws

  • An exception if it fails.

Implementation

void updateCategory(final LandmarkCategory category) {
  objectMethod(
    _pointerId,
    'LandmarkStore',
    'updateCategory',
    args: category.pointerId,
  );
}