Skip to content
Advertisement

Null check operator used on a null value in WebView flutter

please a error when I try to reload my webview from a button : E/flutter (18150): [ERROR:flutter/lib/ui/ui_dart_state.cc(198)] Unhandled Exception: Null check operator used on a null value

JavaScript

this is my WebView

JavaScript

Advertisement

Answer

enter code hereUse the fallback operator to set a default value for null values before using the variable.

JavaScript

Here, “str” is null, and we set the fallback operator with fallback value in case of “str” is null.

Advertisement