debugSetOptions method

  1. @Deprecated('Dev only')
Future<void> debugSetOptions(
  1. SqfliteOptions options
)

Testing only.

deprecated on purpose to remove from code.

Implementation

@Deprecated('Dev only')
Future<void> debugSetOptions(SqfliteOptions options) async {
  await (this as SqfliteInvokeHandler).invokeMethod<dynamic>(
    methodOptions,
    options.toMap(),
  );
}