selecta 0.0.4-beta selecta: ^0.0.4-beta copied to clipboard
A model that represents SQL Select queries, and tools to convert from SQL/JSON to the model and back
import 'package:example/app_root.dart';
import 'package:example/sql_notifier.dart';
import 'package:flutter/material.dart';
/// A notifier for SQL statements.
final sqlNotifier = SqlNotifier();
void main() => runApp(
AppRoot(
sqlNotifier: sqlNotifier,
),
);