identity function

String identity(
  1. String s
)

A function that returns the input string as is.

Implementation

String identity(String s) => s;