| 747 | } |
| 748 | |
| 749 | MMKV_EXPORT uint64_t importFrom(void *handle, void *srcHandle) { |
| 750 | MMKV *kv = static_cast<MMKV *>(handle); |
| 751 | MMKV *kvSrc = static_cast<MMKV *>(srcHandle); |
| 752 | if (kv && kvSrc) { |
| 753 | return kv->importFrom(kvSrc); |
| 754 | } |
| 755 | return 0; |
| 756 | } |
| 757 | |
| 758 | #endif // MMKV_DISABLE_FLUTTER |
nothing calls this directly
no test coverage detected