What is the purpose of it in flutter framework?. I want to know the flow of build context.
class MyAwesomeWidget extends StatelessWidget{
@override
Widget build(BuildContext context)
return Container(
child: Text("Hello"),
);
}