ColoredContainer constructor

const ColoredContainer({
  1. Key? key,
  2. required Widget child,
  3. Color? containerColor,
})

Implementation

const ColoredContainer({Key? key, required this.child, this.containerColor})
    : super(key: key);