Icons.fromJson constructor

Icons.fromJson(
  1. dynamic json
)

Implementation

Icons.fromJson(dynamic json) {
  _defaultIcons =
  json['default_icons'] != null ? DefaultIcons.fromJson(json['defaultIcons']) : null;
  _calendar = json['calendar'] != null ? Calendar.fromJson(json['calendar']) : null;
  _arrowLeft = json['arrowLeft'] != null ? ArrowLeft.fromJson(json['arrowLeft']) : null;
  _arrowLeftLarge =
  json['arrowLeftLarge'] != null ? ArrowLeftLarge.fromJson(json['arrowLeftLarge']) : null;
  _arrowRight = json['arrowRight'] != null ? ArrowRight.fromJson(json['arrowRight']) : null;
  _info = json['info'] != null ? IconInfo.fromJson(json['info']) : null;
  _roundup = json['roundup'] != null ? Roundup.fromJson(json['roundup']) : null;
  _checkCircle = json['checkCircle'] != null ? CheckCircle.fromJson(json['checkCircle']) : null;
  _search = json['search'] != null ? Search.fromJson(json['search']) : null;
}