1.const GreenFrog({ Key key }) : super(key: key);
,
2.@override
,
3.Widget build(BuildContext context)
what does these three things referring to?
class GreenFrog extends StatelessWidget {
const GreenFrog({ Key key }) : super(key: key);
@override
Widget build(BuildContext context) {
return Container(color: const Color(0xFF2DBD3A));
}
}