FFMoveMapCenter constructor

FFMoveMapCenter({
  1. FFValue? location,
})

Implementation

factory FFMoveMapCenter({
  FFValue? location,
}) {
  final result = create();
  if (location != null) result.location = location;
  return result;
}