updateCategory method

void updateCategory(
  1. LandmarkCategory category
)

Updates metadata for a category that belongs to this store.

The provided category must already be part of this store; the call updates the persisted category details.

Parameters

Implementation

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