getTitleWidget method

Widget? getTitleWidget()

Implementation

Widget? getTitleWidget() {
  return Text(
    title,
    overflow: TextOverflow.ellipsis,
    maxLines: 1,
    style: const TextStyle(color: Colors.white, fontSize: 20.0),
  );
}