Only name and tag are mandatory, then other values depending on the tag
function($cfg)
{
if ( \is_string($cfg) ){
$cfg = [
'type' => 'submit',
'text' => $cfg
];
}
$cfg['tag'] = 'button';
parent::__construct($cfg);
return $this;
}