ButtonColorStyle constructor

ButtonColorStyle({
  1. required MaterialStateProperty<Color?> backgroundColor,
  2. required MaterialStateProperty<Color?> foregroundColor,
  3. required MaterialStateProperty<BorderSide?> borderSide,
})

Implementation

ButtonColorStyle({
  required this.backgroundColor,
  required this.foregroundColor,
  required this.borderSide,
});