copyWith method

SetLocation copyWith({
  1. Location? location,
})

Implementation

SetLocation copyWith({
  Location? location,
}) => SetLocation(
  location: location ?? this.location,
);