copyWith method
Implementation
Input$RefUpdate copyWith(
{String? afterOid,
String? Function()? beforeOid,
bool? Function()? force,
String? name}) =>
Input$RefUpdate(
afterOid: afterOid == null ? this.afterOid : afterOid,
beforeOid: beforeOid == null ? this.beforeOid : beforeOid(),
force: force == null ? this.force : force(),
name: name == null ? this.name : name);