DatumAnnotation.from constructor
DatumAnnotation.from(
- DatumAnnotation other, [
- double? startPosition,
- double? endPosition
Implementation
factory DatumAnnotation.from(DatumAnnotation other,
[double? startPosition, double? endPosition]) {
return DatumAnnotation(
startPosition: startPosition ?? other.startPosition,
endPosition: endPosition ?? other.endPosition,
axisType: other.axisType);
}