copyWith method

Error copyWith({
  1. int? count,
  2. List<String>? issueIdsOrKeys,
  3. String? message,
})

Implementation

Error copyWith({int? count, List<String>? issueIdsOrKeys, String? message}) {
  return Error(
    count: count ?? this.count,
    issueIdsOrKeys: issueIdsOrKeys ?? this.issueIdsOrKeys,
    message: message ?? this.message,
  );
}