ContentContainer constructor

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

Implementation

const ContentContainer({
  required this.title,
  this.content,
  this.onShareTap,
  this.onCopyTap,
  this.isJson = true,
  super.key,
});