execSQL method

Future<BoolResult> execSQL(
  1. String sql, [
  2. List? arguments
])

Run sql command with arguments (arguments is optional)

Implementation

Future<BoolResult> execSQL(String sql, [List<dynamic>? arguments]) async {
  return SqfEntityProvider(this).execSQL(sql, arguments);
}