toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    'cssProperties': cssProperties.map((e) => e.toJson()).toList(),
    'shorthandEntries': shorthandEntries.map((e) => e.toJson()).toList(),
    if (styleSheetId != null) 'styleSheetId': styleSheetId!.toJson(),
    if (cssText != null) 'cssText': cssText,
    if (range != null) 'range': range!.toJson(),
  };
}