copyWith method

SearchPublicStoriesByLocation copyWith({
  1. LocationAddress? address,
  2. String? offset,
  3. int? limit,
})

Implementation

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