id method
Sets the element's unique identifier.
Example:
Div().id('main-content')
Implementation
ElementBuilder id(String id) {
_id = id;
return this;
}
Sets the element's unique identifier.
Example:
Div().id('main-content')
ElementBuilder id(String id) {
_id = id;
return this;
}