dart how to wirte a class code example
Example: dart function
when you want to make a function that
doesn't use the format return or a function that doesn't return a value
the function base will look like this:
void functionName() {
}
if its returning some thing it will look like this:
functionName() {
}