ContainerLabel constructor

const ContainerLabel({
  1. String? text,
  2. Color color = Colors.grey,
  3. Color textColor = Colors.white,
  4. Key? key,
})

Implementation

const ContainerLabel({
  this.text,
  this.color = Colors.grey,
  this.textColor = Colors.white,
  Key? key,
}) : super(key: key);