/**
  * Return the state's name.
  *
  * @return null|string
  */
 public function name()
 {
     if (!($iso = $this->object->getValue())) {
         return null;
     }
     return array_get($this->object->getOptions(), $iso);
 }