()
| 308 | } |
| 309 | |
| 310 | get customMetadata(): { [key: string]: string } { |
| 311 | return deserialize(this.native?.customMetadata); |
| 312 | } |
| 313 | |
| 314 | set customMetadata(value) { |
| 315 | this.native.customMetadata = serialize(value); |
nothing calls this directly
no test coverage detected