TextOriginAndExtent constructor

const TextOriginAndExtent({
  1. required double originX,
  2. required double originY,
  3. double? extentWidth,
  4. double? extentHeight,
})

Creates a new TextOriginAndExtent object.

Implementation

const TextOriginAndExtent(
    {required this.originX,
    required this.originY,
    this.extentWidth,
    this.extentHeight});