Icon.fromJson constructor

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

Implementation

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