copyWith method

Input$UpdateRefInput copyWith({
  1. String? clientMutationId()?,
  2. bool? force()?,
  3. String? oid,
  4. String? refId,
})

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);