FFMapLauncherAction constructor
FFMapLauncherAction({
- FFMapLauncherAction_MapType? preferredMapType,
- FFValue? latLng,
- FFValue? address,
- 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;
}