ThemeDTO.fromJson constructor
Implementation
ThemeDTO.fromJson(Map<String, dynamic> json) : super.fromJson(json) {
id = json['id'];
createdAt = json['createdAt'];
name = json['name'];
title = json['title'];
content = json['content'];
design = json['design'];
}