copyWith method

FwStandardModulesAdministratorSystemUpdateBuildDocumentsRequest copyWith({
  1. String? currentVersion,
  2. bool? onlyIncludeNewerVersions,
})

Implementation

FwStandardModulesAdministratorSystemUpdateBuildDocumentsRequest copyWith({
  String? currentVersion,
  bool? onlyIncludeNewerVersions,
}) {
  return FwStandardModulesAdministratorSystemUpdateBuildDocumentsRequest(
    currentVersion: currentVersion ?? this.currentVersion,
    onlyIncludeNewerVersions:
        onlyIncludeNewerVersions ?? this.onlyIncludeNewerVersions,
  );
}