TagValueCell constructor

const TagValueCell({
  1. Key? key,
  2. BuildContext? context,
  3. required TagValueModel data,
  4. Color? color,
  5. double tagWidth = 70,
  6. double miniHeight = 15,
  7. double fontSize = 16,
  8. EdgeInsetsGeometry padding = const EdgeInsets.all(1),
  9. TextAlign textAlign = TextAlign.left,
  10. double paddingRight = 0.0,
})

Implementation

const TagValueCell({
  Key? key,
  this.context,
  required this.data,
  this.color,
  this.tagWidth = 70,
  this.miniHeight = 15,
  this.fontSize = 16,
  this.padding = const EdgeInsets.all(1),
  this.textAlign = TextAlign.left,
  this.paddingRight = 0.0,
}) : super(key: key);