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