Returns a string with reversed order of characters.
If string is null then returns an empty string.
string
Example: print(reverse("hello")); => olleh
static String reverse(String? string) => Transform.reverse(string);