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