toJson method
Implementation
Map<String, dynamic> toJson() => {
'colors': colorStyles.map((e) => _colorMapper.toJsonWithId(e)).toList(),
'texts': textStyles.map((e) => _textMapper.toJsonWithId(e)).toList(),
'fonts': customFonts.map((e) => e.toJson()).toList(),
'apis': apiRequests.map((e) => e.toJson()).toList(),
'models': models.map((e) => e.toJson()).toList(),
'cubits': cubits.map((e) => e.toJson()).toList(),
};