LaravelFCM\Message\PayloadNotificationBuilder::setIcon PHP Method

setIcon() public method

Supported Android Indicates notification icon. example : Sets value to myicon for drawable resource myicon.
public setIcon ( String $icon ) : PayloadNotificationBuilder
$icon String
return PayloadNotificationBuilder current instance of the builder
    public function setIcon($icon)
    {
        $this->icon = $icon;
        return $this;
    }