copyWith method
Implementation
Pose copyWith({
List<double>? head,
List<double>? body,
List<double>? lleg,
List<double>? rleg,
List<double>? larm,
List<double>? rarm,
}) {
return Pose(
head: head ?? this.head,
body: body ?? this.body,
lleg: lleg ?? this.lleg,
rleg: rleg ?? this.rleg,
larm: larm ?? this.larm,
rarm: rarm ?? this.rarm,
);
}