Twitter\Widgets\Buttons\PeriscopeOnAir::setSize PHP Method

setSize() public method

Set the desired size of the On Air button
Since: 1.3.0
public setSize ( string $size ) : __CLASS__
$size string button size
return __CLASS__ support chaining
    public function setSize($size)
    {
        if ($size && isset(static::$ALLOWED_SIZES[$size])) {
            $this->size = $size;
        }
        return $this;
    }