SectionTitle constructor

const SectionTitle({
  1. required String title,
  2. bool isVisible = true,
  3. VoidCallback? onShareTap,
  4. VoidCallback? onCopyTap,
  5. Key? key,
})

Implementation

const SectionTitle({
  required this.title,
  this.isVisible = true,
  this.onShareTap,
  this.onCopyTap,
  super.key,
});