initMap method

void initMap()

create the Map usually call it in initState affter finshing the setup of the map

Implementation

void initMap() async {
  if (_webviewController.value.isInitialized) {
    _sendData('initMap');
 } else {
    await _webviewController.loadingState.first;
    _sendData('initMap');
  }
}