copyWith method

RequestTypeIconLinkDTO copyWith({
  1. Map<String, dynamic>? iconUrls,
})

Implementation

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