copyWith method

VersionMoveBean copyWith({
  1. String? after,
  2. VersionMoveBeanPosition? position,
})

Implementation

VersionMoveBean copyWith({String? after, VersionMoveBeanPosition? position}) {
  return VersionMoveBean(
    after: after ?? this.after,
    position: position ?? this.position,
  );
}