param method

  1. @override
String param(
  1. Object? value
)
override

Records value as the next bind parameter and returns its placeholder in the dialect's syntax, keeping values and the emitted SQL in sync.

Implementation

@override
String param(Object? value) => dialect.escapeLiteral(value);