Font constructor
Font({
- required int size,
- required int lineHeight,
- FontWeight fontWeight = FontWeight.w400,
Implementation
Font({required int size, required int lineHeight, this.fontWeight = FontWeight.w400}) {
this.size = size.toDouble();
height = lineHeight.toDouble() / size;
}