BootstrapActionConfig.fromJson constructor

BootstrapActionConfig.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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