copyWith method
Implementation
SearchPublicStoriesByLocation copyWith({
LocationAddress? address,
String? offset,
int? limit,
}) => SearchPublicStoriesByLocation(
address: address ?? this.address,
offset: offset ?? this.offset,
limit: limit ?? this.limit,
);