$trim constructor

$trim({
  1. required dynamic input,
  2. dynamic chars,
})

Creates $trim operator expression

Removes whitespace characters, including null, or the specified characters from the beginning and end of a string.

  • input - The string to trim. The argument can be any valid expression that resolves to a string.
  • chars - Optional. The character(s) to trim from the beginning of the input. The argument can be any valid expression that resolves to a string. The $ltrim operator breaks down the string into individual UTF code point to trim from input. If unspecified, $ltrim removes whitespace characters, including the null character.

Implementation

$trim({required input, chars})
    : super(op$trim, valueToContent({'input': input, 'chars': chars}));