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