ClearSuffixButton constructor

const ClearSuffixButton({
  1. Key? key,
  2. required SingleFieldBloc<dynamic, dynamic, FieldBlocState, dynamic> singleFieldBloc,
  3. bool? visibleWithoutValue,
  4. Duration? appearDuration,
  5. bool isEnabled = true,
  6. Widget? icon,
})

Implementation

const ClearSuffixButton({
  Key? key,
  required this.singleFieldBloc,
  this.visibleWithoutValue,
  this.appearDuration,
  this.isEnabled = true,
  this.icon,
}) : super(key: key);