copyWith method
Implementation
Input$UpdateRefInput copyWith(
{String? Function()? clientMutationId,
bool? Function()? force,
String? oid,
String? refId}) =>
Input$UpdateRefInput(
clientMutationId: clientMutationId == null
? this.clientMutationId
: clientMutationId(),
force: force == null ? this.force : force(),
oid: oid == null ? this.oid : oid,
refId: refId == null ? this.refId : refId);