RequestTypeIconLinkDTO.fromJson constructor

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

Implementation

factory RequestTypeIconLinkDTO.fromJson(Map<String, Object?> json) {
  return RequestTypeIconLinkDTO(
    iconUrls: json[r'iconUrls'] as Map<String, Object?>?,
  );
}