/**
  * Selected attribute for currency select.
  *
  * @param $currency
  * @return null|string
  */
 public function selected($currency)
 {
     if (!$this->provider->is($currency)) {
         return null;
     }
     return ' selected="selected"';
 }