Style constructor

const Style(
  1. {Color? foreground,
  2. Color? background}
)

Creates a new default style.

Implementation

const Style({
  this.foreground,
  this.background,
});