getCustomPoi method

Future<CustomPoi?> getCustomPoi()

Implementation

Future<CustomPoi?> getCustomPoi() async {
  log("Dart getCustomPoi called, methodChannel will be invoked.");
  var result = await methodChannel.invokeMethod('getCustomPoi');
  return result != null ? createCustomPoi(result) : null;
}