toType method

String toType()

Implementation

String toType() {
  switch (this) {
    case "view":
      {
        return "view";
      }

    case "edge_insets":
      {
        return "EdgeInsets";
      }

    case "style":
      {
        return "style";
      }

    default:
      {
        return "undefined";
      }
  }
}