FFGoogleMapAction constructor
FFGoogleMapAction({
- @Deprecated('This field is deprecated.') String? legacyMapNodeKey,
- FFMoveMapCenter? moveMapCenter,
- FFNodeKeyReference? mapNodeKeyRef,
Implementation
factory FFGoogleMapAction({
@$core.Deprecated('This field is deprecated.')
$core.String? legacyMapNodeKey,
FFMoveMapCenter? moveMapCenter,
FFNodeKeyReference? mapNodeKeyRef,
}) {
final result = create();
if (legacyMapNodeKey != null) result.legacyMapNodeKey = legacyMapNodeKey;
if (moveMapCenter != null) result.moveMapCenter = moveMapCenter;
if (mapNodeKeyRef != null) result.mapNodeKeyRef = mapNodeKeyRef;
return result;
}