FancyContainer constructor

FancyContainer({
  1. Key? key,
  2. required bool isActive,
  3. required String title,
  4. double? padding,
  5. required Function onChange,
  6. double? horizontalPadding,
})

Implementation

FancyContainer({
  Key? key,
  required this.isActive,
  required this.title,
  this.padding,
  required this.onChange,
  this.horizontalPadding,
}) : super(key: key);