copyWith method

InputStoryAreaTypeFoundVenue copyWith({
  1. int? queryId,
  2. String? resultId,
})

Implementation

InputStoryAreaTypeFoundVenue copyWith({int? queryId, String? resultId}) =>
    InputStoryAreaTypeFoundVenue(
      queryId: queryId ?? this.queryId,
      resultId: resultId ?? this.resultId,
    );