copyWith method

IconBean copyWith({
  1. String? link,
  2. String? title,
  3. String? url16X16,
})

Implementation

IconBean copyWith({String? link, String? title, String? url16X16}) {
  return IconBean(
    link: link ?? this.link,
    title: title ?? this.title,
    url16X16: url16X16 ?? this.url16X16,
  );
}