BootstrapLabel constructor

const BootstrapLabel({
  1. Key? key,
  2. BootstrapLabelType type = BootstrapLabelType.defaults,
  3. String text = '',
  4. double fontSize = 10,
  5. Color textColor = Colors.white,
})

Implementation

const BootstrapLabel({
  Key? key,
  this.type = BootstrapLabelType.defaults,
  this.text = '',
  this.fontSize = 10,
  this.textColor = Colors.white,
}) : super(key: key);