Inheritance: implements Eduardokum\LaravelBoleto\Contracts\Boleto\Render\Html
 /**
  * Render HTML
  *
  * @return string
  * @throws \Exception
  */
 public function renderHTML()
 {
     $html = new Html($this->toArray());
     return $html->gerarBoleto();
 }
 /**
  * Render HTML
  *
  * @param bool   $print
  *
  * @return string
  * @throws \Exception
  */
 public function renderHTML($print = false)
 {
     $html = new Html($this->toArray());
     return $html->gerarBoleto($print);
 }