copyWith method

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

Implementation

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