ThemeUpdate.fromJson constructor

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

Implementation

factory ThemeUpdate.fromJson(Map<String, Object?> json) {
  return ThemeUpdate(
    themeKey: json[r'themeKey'] as String? ?? '',
  );
}