nameWidget method

Widget nameWidget()

Implementation

Widget nameWidget() {
  return Text(
    text,
    style: TextStyle(
      color: theme.textColor(),
      fontWeight: FontWeight.bold,
      fontSize: 16.0,
    ),
  );
}