copyWith method
Implementation
WebApiModulesAdministratorSystemUpdateAvailableVersion copyWith(
{String? value, String? text, String? version, DateTime? versionDate}) {
return WebApiModulesAdministratorSystemUpdateAvailableVersion(
value: value ?? this.value,
text: text ?? this.text,
version: version ?? this.version,
versionDate: versionDate ?? this.versionDate);
}