ButtonGroupData constructor

const ButtonGroupData({
  1. required double topStartValue,
  2. required double topEndValue,
  3. required double bottomStartValue,
  4. required double bottomEndValue,
})

Creates button group data with individual corner multipliers.

Implementation

const ButtonGroupData({
  required this.topStartValue,
  required this.topEndValue,
  required this.bottomStartValue,
  required this.bottomEndValue,
});