DryRunResults.fromJson constructor

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

Implementation

factory DryRunResults.fromJson(Map<String, dynamic> json) {
  return DryRunResults(
    deploymentType: json['DeploymentType'] as String?,
    message: json['Message'] as String?,
  );
}