setWebViewController method

void setWebViewController(
  1. dynamic controller
)

Internal method to set the WebViewController (mobile only).

This is called automatically by the mobile map implementation.

Implementation

void setWebViewController(dynamic controller) {
  _logger.log('Setting WebViewController, impl type: ${_impl.runtimeType}');
  _impl.setWebViewController(controller);
}