LookAndFeelSelection.fromJson constructor
Implementation
factory LookAndFeelSelection.fromJson(Map<String, Object?> json) {
return LookAndFeelSelection(
spaceKey: json[r'spaceKey'] as String? ?? '',
lookAndFeelType: LookAndFeelSelectionLookAndFeelType.fromValue(
json[r'lookAndFeelType'] as String? ?? ''),
);
}