FFGoogleMapAction constructor

FFGoogleMapAction({
  1. @Deprecated('This field is deprecated.') String? legacyMapNodeKey,
  2. FFMoveMapCenter? moveMapCenter,
  3. 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;
}