SelectionBorderBottom constructor

const SelectionBorderBottom({
  1. Key? key,
  2. Widget? icon,
  3. String? text,
  4. bool isLoading = false,
  5. String? label,
  6. String? textError,
  7. bool isSelected = false,
  8. IconData? suffix,
  9. double? borderRadius,
  10. Color? borderColor,
  11. List<BoxShadow>? boxShadow,
  12. double? height,
  13. double? padding,
  14. double? margin,
  15. bool borderBottom = true,
  16. Color? color = Colors.transparent,
  17. VoidCallback? onTap,
})

Implementation

const SelectionBorderBottom({
  Key? key,
  this.icon,
  this.text,
  this.isLoading = false,
  this.label,
  this.textError,
  this.isSelected = false,
  this.suffix,
  this.borderRadius,
  this.borderColor,
  this.boxShadow,
  this.height,
  this.padding,
  this.margin,
  this.borderBottom = true,
  this.color = Colors.transparent,
  this.onTap
}) : super(key: key);