trim static method

TransformationData trim({
  1. int? threshold = 10,
})

Basic Transformations

@param threshold Threshold (Default: 10)

@return The generated TransformationData.

Implementation

static TransformationData trim({int? threshold = 10}) {
  // Call the generated class method
  return Trim().trim(threshold);
}