DeploymentStyle.fromJson constructor

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

Implementation

factory DeploymentStyle.fromJson(Map<String, dynamic> json) {
  return DeploymentStyle(
    deploymentOption:
        (json['deploymentOption'] as String?)?.toDeploymentOption(),
    deploymentType: (json['deploymentType'] as String?)?.toDeploymentType(),
  );
}