ColumnContainer constructor

const ColumnContainer({
  1. Key? key,
  2. required List<Widget> children,
  3. CardOptions? cardOptions,
  4. EdgeInsets? padding,
  5. String? cardTitle,
  6. bool isLoading = false,
})

Implementation

const ColumnContainer(
    {super.key,
    required this.children,
    this.cardOptions,
    this.padding,
    this.cardTitle,
    this.isLoading = false});