LabelStyle constructor

const LabelStyle({
  1. Color color = Colors.black87,
  2. int? fontSize = 12,
})

Implementation

const LabelStyle({
  this.color = Colors.black87,
  this.fontSize = 12,
});