IndicatorInsets constructor

IndicatorInsets({
  1. required bool left,
  2. required bool top,
  3. required bool right,
  4. required bool bottom,
  5. required bool topLeft,
  6. required bool topRight,
  7. required bool bottomLeft,
  8. required bool bottomRight,
})

Implementation

IndicatorInsets({
  required this.left,
  required this.top,
  required this.right,
  required this.bottom,
  required this.topLeft,
  required this.topRight,
  required this.bottomLeft,
  required this.bottomRight,
});