hello method

  1. @Inject.new()
String hello(
  1. String message
)

Implementation

@Inject()
String hello(String message) {
  print(message);
  return "world";
}