setDebugModeOn static method

Future<void> setDebugModeOn([
  1. bool on = true
])

Turns on debug mode if you want to see the SQL query executed natively.

Implementation

static Future<void> setDebugModeOn([bool on = true]) async {
  await invokeMethod<dynamic>(methodSetDebugModeOn, on);
}