LookAndFeelSelection.fromJson constructor

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

Implementation

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