FFNavi constructor

FFNavi({
  1. Key? key,
  2. Widget? leading,
  3. Color? color,
  4. Widget? titleView,
  5. Widget? actionView,
  6. double? height = FFNaviHeight,
  7. double? insetHorizontal = 6,
})

Implementation

FFNavi({
  Key? key,
  this.leading,
  this.color,
  this.titleView,
  this.actionView,
  this.height = FFNaviHeight,
  this.insetHorizontal = 6,
}) : super(
        key: key,
      );