NotchedDecoration constructor

NotchedDecoration({
  1. Color? backgroundColor,
  2. double? elevation,
  3. bool? showUnselectedLabels = true,
  4. TextStyle? unselectedLabelTextStyle,
  5. Color? unselectedIconColor,
  6. Color? selectedIconColor,
  7. Color? unselectedLabelColor,
  8. IconThemeData? selectedIconTheme,
})

Implementation

NotchedDecoration({
  Color? backgroundColor,
  double? elevation,
  bool? showUnselectedLabels = true,
  TextStyle? unselectedLabelTextStyle,
  Color? unselectedIconColor,
  Color? selectedIconColor,
  Color? unselectedLabelColor,
  IconThemeData? selectedIconTheme,
}) : super(
        backgroundColor: backgroundColor,
        elevation: elevation,
        unselectedIconColor: unselectedIconColor,
        showUnselectedLabels: showUnselectedLabels!,
        selectedIconColor: selectedIconColor,
        unselectedLabelColor: unselectedLabelColor,
        unselectedLabelTextStyle: unselectedLabelTextStyle,
        selectedIconTheme: selectedIconTheme,
      );