ApplyModalButton constructor

const ApplyModalButton({
  1. Key? key,
  2. required VoidCallback onTap,
  3. required String title,
  4. bool active = true,
  5. Color? color,
})

Implementation

const ApplyModalButton({
  Key? key,
  required this.onTap,
  required this.title,
  this.active = true,
  this.color,
}) : super(key: key);