copyWith method

Input$RefUpdate copyWith({
  1. String? afterOid,
  2. String? beforeOid()?,
  3. bool? force()?,
  4. String? name,
})

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