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

  • top : top (Default: 10)

  • left : left (Default: 10)

  • height : height (Default: 50)

  • width : width (Default: 20)

  • boundinpgbox : Bounding Box (Default: )

Returns 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);
}