RootDesign constructor

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

Creates a global root design.

Implementation

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