RequestTypeGroupDTO.fromJson constructor

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

Implementation

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