| 675 | } |
| 676 | |
| 677 | MMKV_EXPORT bool isReadOnly(void *handle) { |
| 678 | MMKV *kv = static_cast<MMKV *>(handle); |
| 679 | if (kv) { |
| 680 | return kv->isReadOnly(); |
| 681 | } |
| 682 | return false; |
| 683 | } |
| 684 | |
| 685 | MMKV_EXPORT void registerErrorHandler(ErrorCallback_t callback) { |
| 686 | g_flutterHandler.errorCallback = callback; |
nothing calls this directly
no test coverage detected