LaunchTemplateSpecification.fromJson constructor
Implementation
factory LaunchTemplateSpecification.fromJson(Map<String, dynamic> json) {
return LaunchTemplateSpecification(
launchTemplateId: json['launchTemplateId'] as String?,
launchTemplateName: json['launchTemplateName'] as String?,
version: json['version'] as String?,
);
}