RootDesign constructor

const RootDesign({
  1. String name = 'root',
  2. FlintTheme? theme,
  3. FlintThemeProvider? themeProvider,
  4. DartStyle? root,
  5. DartStyle? html,
  6. DartStyle? body,
  7. DartStyle? all,
  8. DartStyle? links,
  9. Map<String, DartStyle> selectors = const {},
  10. List<StyleKeyframes> keyframes = const [],
})

Creates a global root design.

Implementation

const RootDesign({
  this.name = 'root',
  this.theme,
  this.themeProvider,
  this.root,
  this.html,
  this.body,
  this.all,
  this.links,
  this.selectors = const {},
  this.keyframes = const [],
});