ServiceTemplateEnvironmentVariable.fromJson constructor
Implementation
factory ServiceTemplateEnvironmentVariable.fromJson(Map<String, dynamic> json) {
return ServiceTemplateEnvironmentVariable(name: json['name'] as String, value: json['value'] as String);
}