executePreparedNamed method

  1. @override
Future<Result<QueryResult>> executePreparedNamed(
  1. String connectionId,
  2. int stmtId,
  3. Map<String, Object?> namedParams,
  4. StatementOptions? options,
)
override

Implementation

@override
Future<Result<QueryResult>> executePreparedNamed(
  String connectionId,
  int stmtId,
  Map<String, Object?> namedParams,
  StatementOptions? options,
) async {
  return _repository.executePreparedNamed(
    connectionId,
    stmtId,
    namedParams,
    options,
  );
}