StopBuildBatchOutput.fromJson constructor
Implementation
factory StopBuildBatchOutput.fromJson(Map<String, dynamic> json) {
return StopBuildBatchOutput(
buildBatch: json['buildBatch'] != null
? BuildBatch.fromJson(json['buildBatch'] as Map<String, dynamic>)
: null,
);
}