set method

dynamic set(
  1. dynamic modifyier()
)

Implementation

set(modifyier()) {
  _isSetValue = true;
  if (modifyier() == false) {
    _isSetValue = false;
    return;
  }
  _isSetValue = false;
  _refresh();
}