BaseExampleWrap constructor

const BaseExampleWrap({
  1. Key? key,
  2. required String title,
  3. required List<BaseKeyValue> children,
  4. Color? backgroundColor,
})

Implementation

const BaseExampleWrap(
    {super.key,
    required this.title,
    required this.children,
    this.backgroundColor});