FieldIncDecSupport constructor

FieldIncDecSupport({
  1. Key? key,
  2. Widget? leftIcon,
  3. Widget? rightIcon,
  4. double? borderRadius,
  5. required double? elevation,
  6. required Color backColor,
  7. Color? valColor,
  8. required int value,
  9. required int maxLimit,
})

Implementation

FieldIncDecSupport(
    {Key? key,
    this.leftIcon,
    this.rightIcon,
    this.borderRadius,
    required this.elevation,
    required this.backColor,
    this.valColor,
    required this.value,
    required this.maxLimit})
    : super(key: key);