styles method

String styles()

Implementation

String styles() {
  final Iterable<String>? styles = this;
  if (styles == null) return "";
  return ' style="${styles.join("; ")};"';
}