tExtract static method

TransformationData tExtract({
  1. int? top = 10,
  2. int? left = 10,
  3. int? height = 50,
  4. int? width = 20,
  5. String? boundingBox,
})

Basic Transformations

  • top : top (Default: 10)

  • left : left (Default: 10)

  • height : height (Default: 50)

  • width : width (Default: 20)

  • boundingBox : Bounding Box (Default: )

Returns TransformationData.

Implementation

static TransformationData tExtract(
    {int? top = 10,
    int? left = 10,
    int? height = 50,
    int? width = 20,
    String? boundingBox}) {
  // Call the generated class method
  return TExtract().extract(top, left, height, width, boundingBox);
}