withLatestDeployAttemptTime method

ProjectInfoBuilder withLatestDeployAttemptTime(
  1. DateTime? latestDeployAttemptTime
)

Implementation

ProjectInfoBuilder withLatestDeployAttemptTime(
    DateTime? latestDeployAttemptTime) {
  _latestDeployAttemptTime = Timestamp(timestamp: latestDeployAttemptTime);
  return this;
}