IntroColors constructor

const IntroColors({
  1. Color background = Colors.black,
  2. Color text = Colors.white,
  3. Color button = Colors.white,
})

Implementation

const IntroColors({
  this.background = Colors.black,
  this.text = Colors.white,
  this.button = Colors.white,
});