lineSpacing method
- double height
Changes the TextStyle.height for this widget.
Implementation
Widget lineSpacing(double height) {
return DefaultTextStyle(
style: TextStyle(
height: height,
),
child: this,
);
}
Changes the TextStyle.height for this widget.
Widget lineSpacing(double height) {
return DefaultTextStyle(
style: TextStyle(
height: height,
),
child: this,
);
}