HeadTitle.h6 constructor

HeadTitle.h6(
  1. String title
)

Implementation

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