SoftUiSection constructor

const SoftUiSection({
  1. required String title,
  2. required Widget child,
  3. Key? key,
})

Implementation

const SoftUiSection({
  required this.title,
  required this.child,
  super.key,
});