setCustomIcon method
Implementation
Future<void> setCustomIcon(
String base64Icon,
double scaledWidth,
double scaledHeight,
double anchorX,
double anchorY,
) async {
await webViewController.runJavaScript('''
setCustomIcon(
"$base64Icon",
$scaledWidth,
$scaledHeight,
$anchorX,
$anchorY
);
''');
}