sayHello method

String sayHello([
  1. String world = 'world'
])

Implementation

String sayHello([String world = 'world']) {
  return 'Hello, $world!';
}