stageVariant property
String
get
stageVariant
Implementation
String get stageVariant => _getAttribute<String>(kStageVariant, '');
set
stageVariant
(String? x)
pass null
to remove key from attributes
Implementation
set stageVariant(String? x) => (x == null)
? _attributes.remove(kStageVariant)
: _attributes[kStageVariant] = x;