extract static method

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

Basic Transformations

@param top Top (Default: 10)

@param left Left (Default: 10)

@param height Height (Default: 50)

@param width Width (Default: 20)

@param boundinpgbox Bounding box

@return The generated TransformationData.

Implementation

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