After reading flutter documentation I got information about how to underline text. But My problem is, I needed a simple text style with bolder underline.
Try adding the decoration in TextStyle.
Text(
'Flutter Developer',
style: TextStyle(
decoration: TextDecoration.underline,
decorationThickness: 4,
),
);