HeadTitle.h1 constructor
HeadTitle.h1(
- String title
Implementation
factory HeadTitle.h1(String title) {
return HeadTitle(
title,
titleStyle: TextStyle(
fontSize: 36.0,
fontWeight: FontWeight.bold,
),
);
}