issueCustomQuery method

  1. @Deprecated('Use customStatement in the database class')
Future<void> issueCustomQuery(
  1. String sql,
  2. [List? args]
)

Executes the custom query.

Implementation

@Deprecated('Use customStatement in the database class')
Future<void> issueCustomQuery(String sql, [List<dynamic>? args]) {
  return _issueCustomQuery(sql, args);
}