call method

String call([
  1. String placeholder = '?'
])

Return a query fragment with the specified placeholder value.

Implementation

String call([String placeholder = '?']) {
  return '$_before$placeholder$_after';
}