copyWith method

WebApiModulesAdministratorSystemUpdateDownloadBuildDocumentResponse copyWith({
  1. int? status,
  2. bool? success,
  3. String? msg,
  4. String? downloadUrl,
})

Implementation

WebApiModulesAdministratorSystemUpdateDownloadBuildDocumentResponse copyWith(
    {int? status, bool? success, String? msg, String? downloadUrl}) {
  return WebApiModulesAdministratorSystemUpdateDownloadBuildDocumentResponse(
      status: status ?? this.status,
      success: success ?? this.success,
      msg: msg ?? this.msg,
      downloadUrl: downloadUrl ?? this.downloadUrl);
}