UContentBentoPage constructor

const UContentBentoPage({
  1. required UContentResponse? content,
  2. Key? key,
  3. String? title,
  4. EdgeInsets padding = const EdgeInsets.all(16),
})

Implementation

const UContentBentoPage({
  required this.content,
  super.key,
  this.title,
  this.padding = const EdgeInsets.all(16),
});