getWhiteTitle function

Widget getWhiteTitle(
  1. String title
)

Implementation

Widget getWhiteTitle(String title){
  return  Text(
    title,
    textAlign: TextAlign.center,
    style: TextStyle(color: white, fontSize: medium, fontWeight: FontWeight.w600, decoration: TextDecoration.none),
  );
}