BootstrapActionConfig.fromJson constructor
Implementation
factory BootstrapActionConfig.fromJson(Map<String, dynamic> json) {
return BootstrapActionConfig(
name: json['Name'] as String,
scriptBootstrapAction: ScriptBootstrapActionConfig.fromJson(
json['ScriptBootstrapAction'] as Map<String, dynamic>),
);
}