handleOptions method

Future handleOptions()

Handle options.

Implementation

Future handleOptions() async {
  if (arguments is Map) {
    logLevel = (argumentsMap['logLevel'] as int?) ?? sqfliteLogLevelNone;
  }
  return null;
}