copyWithWrapped method

Implementation

WebApiModulesAdministratorSystemUpdateBuildDocumentsResponse copyWithWrapped(
    {Wrapped<int?>? status,
    Wrapped<bool?>? success,
    Wrapped<String?>? msg,
    Wrapped<List<String>?>? documentsList,
    Wrapped<List<WebApiModulesAdministratorSystemUpdateBuildDocument>?>?
        documents}) {
  return WebApiModulesAdministratorSystemUpdateBuildDocumentsResponse(
      status: (status != null ? status.value : this.status),
      success: (success != null ? success.value : this.success),
      msg: (msg != null ? msg.value : this.msg),
      documentsList:
          (documentsList != null ? documentsList.value : this.documentsList),
      documents: (documents != null ? documents.value : this.documents));
}