copyWith method

FollowPosition copyWith({
  1. FollowBearing? bearing,
  2. FollowStyleZoom? styleZoom,
})

Implementation

FollowPosition copyWith({
  FollowBearing? bearing,
  FollowStyleZoom? styleZoom
}) {
  return FollowPosition(
    bearing: bearing ?? this.bearing,
    styleZoom: styleZoom ?? this.styleZoom
  );
}