copyWith method

InputStoryAreaTypeLocation copyWith({
  1. Location? location,
  2. LocationAddress? address,
})

Implementation

InputStoryAreaTypeLocation copyWith({
  Location? location,
  LocationAddress? address,
}) => InputStoryAreaTypeLocation(
  location: location ?? this.location,
  address: address ?? this.address,
);