FortuneItemStyle constructor

const FortuneItemStyle({
  1. Color color = Colors.white,
  2. Color borderColor = Colors.black,
  3. double borderWidth = 1.0,
  4. TextAlign textAlign = TextAlign.start,
  5. TextStyle textStyle = const TextStyle(),
})

Implementation

const FortuneItemStyle({
  this.color = Colors.white,
  this.borderColor = Colors.black,
  this.borderWidth = 1.0,
  this.textAlign = TextAlign.start,
  this.textStyle = const TextStyle(),
});