RippleButtonColor constructor

const RippleButtonColor({
  1. Color background = Colors.amber,
  2. Color foreground = Colors.black,
  3. Color shadow = Colors.black,
  4. Color disabled = Colors.grey,
  5. Color overlay = Colors.white24,
})

Implementation

const RippleButtonColor({
  this.background = Colors.amber,
  this.foreground = Colors.black,
  this.shadow = Colors.black,
  this.disabled = Colors.grey,
  this.overlay = Colors.white24,
});