sayHello function

String sayHello(
  1. String name
)

Implementation

String sayHello(String name) {
  return 'Hello $name, Nice to love you';
}