standalone property

bool standalone

Return the value of the standalone directive.

Implementation

bool get standalone => getAttribute(standaloneAttribute) == 'yes';
void standalone=(bool? value)

Set the value of the standalone directive.

Implementation

set standalone(bool? value) => setAttribute(
    standaloneAttribute,
    value == null
        ? null
        : value
            ? 'yes'
            : 'no');