trim method
Method for Basic Transformations
threshold
: threshold (Default: 10) Returns TransformationData.
Implementation
TransformationData trim(
int? threshold,
) {
var values = <String, String>{};
if (threshold != null) {
values['t'] = threshold.toString();
}
return TransformationData(plugin: 't', name: 'trim', values: values);
}