trim method

SqlX trim()

Implementation

SqlX trim() => SqlX(
  str.startsWith("(") && str.endsWith(")")
      ? str.substring(1, str.length - 1)
      : str,
);