Pub CI

sqflite_ext

Useful utilities to augment sqflite. Designed to be unobtrusive helpers, so you still access sqflite directly (not a wrapper).

Features

Usage

import 'package:sqflite_ext/sqflite_ext.dart';

boolToInt(true);
// => 1

boolToIntOrNull(null);
// => null

intToBool(1);
// => true

intToBoolOrNull(null);
// => null

Libraries

sqflite_ext