FFMapLauncherAction constructor

FFMapLauncherAction({
  1. FFMapLauncherAction_MapType? preferredMapType,
  2. FFValue? latLng,
  3. FFValue? address,
  4. FFValue? title,
})

Implementation

factory FFMapLauncherAction({
  FFMapLauncherAction_MapType? preferredMapType,
  FFValue? latLng,
  FFValue? address,
  FFValue? title,
}) {
  final result = create();
  if (preferredMapType != null) result.preferredMapType = preferredMapType;
  if (latLng != null) result.latLng = latLng;
  if (address != null) result.address = address;
  if (title != null) result.title = title;
  return result;
}