copyWithWrapped method

WebApiModulesAdministratorSystemUpdateGetVersionHotfixResponse copyWithWrapped({
  1. Wrapped<int?>? status,
  2. Wrapped<bool?>? success,
  3. Wrapped<String?>? msg,
  4. Wrapped<String?>? hotfix,
})

Implementation

WebApiModulesAdministratorSystemUpdateGetVersionHotfixResponse
    copyWithWrapped(
        {Wrapped<int?>? status,
        Wrapped<bool?>? success,
        Wrapped<String?>? msg,
        Wrapped<String?>? hotfix}) {
  return WebApiModulesAdministratorSystemUpdateGetVersionHotfixResponse(
      status: (status != null ? status.value : this.status),
      success: (success != null ? success.value : this.success),
      msg: (msg != null ? msg.value : this.msg),
      hotfix: (hotfix != null ? hotfix.value : this.hotfix));
}