IosIconStructImagesBean.fromJson constructor

IosIconStructImagesBean.fromJson(
  1. Map<String, dynamic> json
)

Implementation

IosIconStructImagesBean.fromJson(Map<String, dynamic> json) {
  size = json['size']?.toString();
  idiom = json['idiom']?.toString();
  filename = json['filename']?.toString();
  scale = json['scale']?.toString();
  platform = json['platform']?.toString();
}