SenzuSubtitleStyle constructor

const SenzuSubtitleStyle({
  1. TextStyle textStyle = const TextStyle(color: Colors.white, fontSize: 16, backgroundColor: Colors.black54, height: 1.3),
  2. AlignmentGeometry alignment = Alignment.bottomCenter,
  3. TextAlign textAlign = TextAlign.center,
  4. EdgeInsetsGeometry padding = const EdgeInsets.only(bottom: 8),
})

Implementation

const SenzuSubtitleStyle({
  this.textStyle = const TextStyle(
    color: Colors.white,
    fontSize: 16,
    backgroundColor: Colors.black54,
    height: 1.3,
  ),
  this.alignment = Alignment.bottomCenter,
  this.textAlign = TextAlign.center,
  this.padding = const EdgeInsets.only(bottom: 8),
});