startCustomPoiCreation method
Implementation
Future<String?> startCustomPoiCreation(String? name, String? description,
String? encodedSelectedIcon, String? encodedUnSelectedIcon) async {
log("Dart startCustomPoiCreation called, methodChannel will be invoked.");
return await methodChannel
.invokeMethod<String>('startCustomPoiCreation', <String, String?>{
'name': name,
'description': description,
'selectedIcon': encodedSelectedIcon,
'unSelectedIcon': encodedUnSelectedIcon
});
}