fromJson static method

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

Implementation

static FileList fromJson(Map<String, dynamic> json) {
  return FileList(
    guidInfo: json['guid_info'],
    guid: json['guid'],
    requestId: json['request_id'],
    list: (json['list'] as List).map((e) => FileItem.fromJson(e)).toList(),
  );
}