IconFontModelGlyphs.fromJson constructor

IconFontModelGlyphs.fromJson(Map<String, dynamic> json)

Implementation

IconFontModelGlyphs.fromJson(Map<String, dynamic> json) {
  iconId = json["icon_id"]?.toString();
  name = json["name"]?.toString();
  fontClass = json["font_class"]?.toString();
  unicode = json["unicode"]?.toString();
  unicodeDecimal = json["unicode_decimal"]?.toInt();
}