HeadTitle.h3 constructor

HeadTitle.h3(
  1. String title
)

Implementation

factory HeadTitle.h3(String title) {
  return HeadTitle(
    title,
    titleStyle: TextStyle(
      fontSize: 28.0,
      fontWeight: FontWeight.bold,
    ),
  );
}