LargeTextStyle constructor

const LargeTextStyle({
  1. Color? color,
  2. bool? isBold = false,
})

Implementation

const LargeTextStyle({Color? color, bool? isBold = false}): super(
    color: color,
    fontWeight: isBold != null && isBold ? FontWeight.bold : null,
    fontSize: 22
);