Creates a new string with the specified content.
(content)
| 32 | |
| 33 | /** Creates a new string with the specified content. */ |
| 34 | static from(content) { |
| 35 | return new Il2Cpp.String(Il2Cpp.Api._stringNew(Memory.allocUtf8String(content || ""))); |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | Il2Cpp.String = Il2CppString; |
nothing calls this directly
no test coverage detected