copyWith method

MoveFieldBean copyWith({
  1. String? after,
  2. MoveFieldBeanPosition? position,
})

Implementation

MoveFieldBean copyWith({String? after, MoveFieldBeanPosition? position}) {
  return MoveFieldBean(
    after: after ?? this.after,
    position: position ?? this.position,
  );
}