IndicatorInsets.only constructor

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

Implementation

IndicatorInsets.only({
  bool? left,
  bool? top,
  bool? right,
  bool? bottom,
  bool? topLeft,
  bool? topRight,
  bool? bottomLeft,
  bool? bottomRight,
})  : topLeft = topLeft ?? false,
      topRight = topRight ?? false,
      bottomLeft = bottomLeft ?? false,
      bottomRight = bottomRight ?? false,
      left = left ?? false,
      top = top ?? false,
      right = right ?? false,
      bottom = bottom ?? false;