trim method

TransformationData trim(
  1. int? threshold
)

Method for Basic Transformations

Implementation

TransformationData trim(
  int? threshold,
) {
  var values = <String, String>{};
  if (threshold != null) {
    values['t'] = threshold.toString();
  }
  return TransformationData(plugin: 't', name: 'trim', values: values);
}