NeonInputBox constructor

const NeonInputBox({
  1. Key? key,
  2. TextEditingController? controller,
  3. required List<String> tabs,
  4. List<Color>? tabColors,
  5. Widget? bottomLeftWidget,
  6. String? hint,
})

Implementation

const NeonInputBox({
  super.key,
  this.controller,
  required this.tabs,
  this.tabColors,
  this.bottomLeftWidget,
  this.hint,
});