TabEntry constructor

TabEntry({
  1. dynamic title,
  2. dynamic subtitle,
  3. IconData? icon,
  4. required Widget child,
  5. void onSearch(
    1. String value
    )?,
  6. Widget? floatingActionButton,
  7. FloatingActionButtonLocation? floatingActionButtonLocation,
  8. String? route,
  9. bool inheritIcon = true,
})

Implementation

TabEntry({
  this.title,
  this.subtitle,
  this.icon,
  required this.child,
  this.onSearch,
  this.floatingActionButton,
  this.floatingActionButtonLocation,
  this.route,
  this.inheritIcon = true,
});