copyWith method

ContentIdToContentTypeResponse copyWith({
  1. Map<String, dynamic>? results,
})

Implementation

ContentIdToContentTypeResponse copyWith({Map<String, dynamic>? results}) {
  return ContentIdToContentTypeResponse(
    results: results ?? this.results,
  );
}