DriverConfig constructor

DriverConfig({
  1. required String type,
  2. required Map<String, Object?> options,
})

Creates a driver descriptor with a type (e.g., sqlite) and options.

Implementation

DriverConfig({required this.type, required this.options});