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