TextBlockTheme constructor

TextBlockTheme({
  1. required TextStyle style,
  2. required VerticalSpacing spacing,
  3. VerticalSpacing lineSpacing = const VerticalSpacing.zero(),
  4. BoxDecoration? decoration,
})

Implementation

TextBlockTheme({
  required this.style,
  required this.spacing,
  this.lineSpacing = const VerticalSpacing.zero(),
  this.decoration,
});