NavRail constructor

NavRail({
  1. Key? key,
  2. IconData? icon1,
  3. IconData? icon2,
  4. IconData? icon3,
  5. String? label1,
  6. String? label2,
  7. String? label3,
  8. String? route1,
  9. String? route2,
  10. String? route3,
})

Implementation

NavRail({
  super.key,
  this.icon1,
  this.icon2,
  this.icon3,
  this.label1,
  this.label2,
  this.label3,
  this.route1,
  this.route2,
  this.route3,
});