drift/examples/app/lib/database/connection/connection.dart

6 lines
203 B
Dart

// We use a conditional export to expose the right connection factory depending
// on the platform.
export 'unsupported.dart'
if (dart.library.js) 'web.dart'
if (dart.library.ffi) 'native.dart';