toStringValue static method
Converts a GiphyRating enum value to its corresponding string representation.
Example:
String value = GiphyRatingExtension.toStringValue(GiphyRating.pg13);
Implementation
static String toStringValue(GiphyRating rating) {
return rating.toString().split('.').last;
}