html property
String
get
html
The getter for _html which returns empty string if null.
Implementation
String get html => _html ?? '';
set
html
(String str)
Sets private _html to str.
Implementation
set html(String str) => _html = str;