If a function only returns something, and doesn't have any other code blocks inside it, then instead of writing:

void function_1(){
  return ("Hey there");
}

You can write in one line:

void function_1() => ("Hey there")
// ___function___ => {what is returned}