GetPresetResponse.fromJson constructor
Implementation
factory GetPresetResponse.fromJson(Map<String, dynamic> json) {
return GetPresetResponse(
preset: json['preset'] != null
? Preset.fromJson(json['preset'] as Map<String, dynamic>)
: null,
);
}