getPoweredBy function
Implementation
Widget getPoweredBy(){
return Column(
children: [
const Text(
'Powered By',
style: TextStyle(fontWeight: FontWeight.w400, fontSize: 12, color: Colors.black),
),
Image.asset(
'assets/images/ic_logo.png',
width: 90,
height: 35,
),
],
);
}