copyWith method
Implementation
Rectangle copyWith({ReferencePoint? low, ReferencePoint? high}) {
return Rectangle(low: low ?? this.low, high: high ?? this.high);
}
Rectangle copyWith({ReferencePoint? low, ReferencePoint? high}) {
return Rectangle(low: low ?? this.low, high: high ?? this.high);
}