NavigationBodyStyle constructor

const NavigationBodyStyle({
  1. Color? background,
  2. BorderRadius borderRadius = BorderRadius.zero,
  3. ScrollPhysics? physics,
  4. DragStartBehavior dragStartBehavior = DragStartBehavior.start,
  5. Axis scrollDirection = Axis.horizontal,
})

Implementation

const NavigationBodyStyle({
  this.background,
  this.borderRadius = BorderRadius.zero,
  this.physics,
  this.dragStartBehavior = DragStartBehavior.start,
  this.scrollDirection = Axis.horizontal,
});