toRawString method

String toRawString()

Implementation

String toRawString() {
  switch(this) {
    case HackleAppMode.native:
      return "native";
    case HackleAppMode.webViewWrapper:
      return "web_view_wrapper";
  }
}