AddListButton constructor

const AddListButton({
  1. Key? key,
  2. required dynamic onPress(),
  3. required String title,
  4. Color? borderSideColor,
  5. Color? backgroundColor,
})

Implementation

const AddListButton({
  Key? key,
  required this.onPress,
  required this.title,
  this.borderSideColor,
  this.backgroundColor,
}) : super(key: key);