myBaseFont function

TextStyle myBaseFont({
  1. Color color = Colors.white,
  2. required FontWeight fontWeight,
  3. required double fontSize,
})

Implementation

TextStyle myBaseFont({
  Color color = Colors.white,
  required FontWeight fontWeight,
  required double fontSize,
}) {
  return TextStyle(
    color: color,
    fontWeight: fontWeight,
    fontSize: fontSize,
  );
}