build method

String build({
  1. required bool isLocal,
})

Returns the SQL statement to set the runtime parameters. If isLocal is true, options are set for the current transaction only and not globally.

Implementation

String build({required bool isLocal}) =>
    buildStatements(isLocal: isLocal).join('\n');