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