getValue method

String? getValue(
  1. String key
)

Fetch the MPCategory.value of a MPCategory directly from the collection

Implementation

String? getValue(String key) {
  return getById(key)?.value;
}