onMapError method
Implementation
@override
void onMapError(Error error) {
if (error is KakaoAuthError) {
channel.invokeMethod("onMapError", {
"className": "KakaoAuthError",
"message": error.message,
});
}
if (error is KakaoMapError) {
channel.invokeMethod("onMapError", {
"className": error.className,
"message": error.message,
});
}
}