copyCenter method
Copy the center of this.
Implementation
void copyCenter(Vector3 center) {
  center
    ..setFrom(_min)
    ..add(_max)
    ..scale(0.5);
}Copy the center of this.
void copyCenter(Vector3 center) {
  center
    ..setFrom(_min)
    ..add(_max)
    ..scale(0.5);
}