IconBean.fromJson constructor

IconBean.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory IconBean.fromJson(Map<String, Object?> json) {
  return IconBean(
    link: json[r'link'] as String?,
    title: json[r'title'] as String?,
    url16X16: json[r'url16x16'] as String?,
  );
}