SettingsSample.fromJson constructor
Implementation
factory SettingsSample.fromJson(Map<String, dynamic> json) => SettingsSample(
name: json["name"],
help: json["help"],
settings: json["settings"] == null
? null
: SettingsSampleSettings.fromJson(json["settings"]),
);