styleText property

String? styleText

Implementation

String? get styleText {
  var attr = getAttribute('style');
  if (attr == null) return null;
  return attr.value;
}
void styleText=(String? value)

Implementation

set styleText(String? value) => setAttribute('style', value);