Title method

Widget Title(
  1. String title
)

Implementation

Widget Title(String title) {
  return Padding(
    padding: EdgeInsets.only(top: 10, bottom: 10),
    child: Text(
      title,
      style: TextStyle(fontWeight: FontWeight.bold),
    ),
  );
}