override fun toJson()

in integration-test/compiler/src/main/kotlin/com/uber/crumb/integration/compiler/GsonSupport.kt [526:535]


  override fun toJson(writer: com.squareup.moshi.JsonWriter, model: GsonSupportMeta?) {
    model?.run {
      writer.beginObject()
          .name("methodName")
          .value(methodName)
          .name("argCount")
          .value(argCount)
      writer.endObject()
    }
  }