trim static method

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

Basic Transformations

  • threshold : threshold (Default: 10)

Returns TransformationData.

Implementation

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