main function

void main(
  1. List<String> args,
  2. SendPort sendPort
)

The CLI's DDL entrypoint: serves this driver's DdlGenerator over the isolate command protocol.

Implementation

void main(List<String> args, SendPort sendPort) =>
    serveDdlGenerator(const SQLiteDdlGenerator(), sendPort);