toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case Action.openApp:
      return 'OPEN_APP';
    case Action.deepLink:
      return 'DEEP_LINK';
    case Action.url:
      return 'URL';
  }
}