copyWith method

AnswerCustomQuery copyWith({
  1. int? customQueryId,
  2. String? data,
})

Implementation

AnswerCustomQuery copyWith({
  int? customQueryId,
  String? data,
}) =>
    AnswerCustomQuery(
      customQueryId: customQueryId ?? this.customQueryId,
      data: data ?? this.data,
    );