StoneStreamStyle constructor

StoneStreamStyle({
  1. Color backgroundColor = Colors.white,
  2. Color textColor = Colors.black,
  3. Color buttonColor = Colors.blue,
  4. Color buttonTextColor = Colors.white,
  5. IconData? icon,
  6. Color iconColor = Colors.blue,
  7. Color textAlertColor = Colors.red,
})

Implementation

StoneStreamStyle({
  this.backgroundColor = Colors.white,
  this.textColor = Colors.black,
  this.buttonColor = Colors.blue,
  this.buttonTextColor = Colors.white,
  this.icon,
  this.iconColor = Colors.blue,
  this.textAlertColor = Colors.red,
});