enablePurpose method

CurrentUserStatusTransaction enablePurpose(
  1. String id
)

Enable a single purpose.

Implementation

CurrentUserStatusTransaction enablePurpose(String id) {
  _purposesStatus[id] = true;
  return this;
}