stageColor property

String stageColor

Implementation

String get stageColor => _getAttribute<String>(kStageColor, '');
void stageColor=(String? x)

pass null to remove key from attributes

Implementation

set stageColor(String? x) => (x == null)
    ? _attributes.remove(kStageColor)
    : _attributes[kStageColor] = x;