3.0 함수 정의

String sayHello(String potato) {
	return "hello $potato nice to meet you!";
}

String sayHello(String potato) => "hello $potato nice to meet you!";

// fat arrow syntax를 사용할 수 있다.

(원천)
https://nomadcoders.co/dart-for-beginners/lectures/4107