How we can call getElementById using JsObject in flutter, tried below but not worked
import 'dart:js' as js;
var msg = js.context['window'].callMethod(
'document.getElementById', ["feeds"]);
var msg = js.context.callMethod(
'document.getElementById', ["feeds"]);
Giving error
NoSuchMethodError: 'callMethod'