getBackArrowBlack function
Implementation
Widget getBackArrowBlack(){
return Container(
alignment: Alignment.centerLeft,
margin: const EdgeInsets.only(left: 0,right:0,top: 4,bottom: 4),
child: Padding(
padding: const EdgeInsets.only(left: 18.0),
child: Image.asset('assets/images/ic_arrow_left.png', width: 22, height: 22,color: black,),
),
);
}