inlineStyles property
Stylesheet?
get
inlineStyles
Inline CSS styles for this page.
These styles are included in a <style> tag in the page head.
Example
@override
Stylesheet? get inlineStyles => css({
'main': Style(maxWidth: '800px', margin: '0 auto', padding: '20px'),
'h1': Style(color: '#333'),
});
Implementation
Stylesheet? get inlineStyles => null;