toStringValue static method

String toStringValue(
  1. GiphyKeyboardAppearance type
)

Converts a GiphyKeyboardAppearance enum value to its string representation.

type The GiphyKeyboardAppearance value to be converted.

Returns the string representation of the given GiphyKeyboardAppearance value.

Implementation

static String toStringValue(GiphyKeyboardAppearance type) {
  return type.toString().split('.').last;
}