Created
July 19, 2023 14:20
-
-
Save boeledi/507ddf860bc5b352c9f44ba106552141 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MyStatelessWidget extends StatelessWidget { | |
const MyStatelessWidget({ | |
super.key, | |
required this.parameter, | |
}); | |
final parameter; | |
@override | |
Widget build(BuildContext context) { | |
return ... | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment