LaunchTemplateSpecification.fromJson constructor

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

Implementation

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