description property

  1. @override
String get description
override

A short description of this executable.

Implementation

@override
// TODO: implement description
String get description => '''Generate Data Classes for PostgreSQL schema

Examples:

# generate data classes for public schema (default)
schema-dart -c postgresql://postgres:postgres@localhost:54322/postgres -o path/to/output/directory

# generate for data classes for a "cms" schema
schema-dart -c <connection-string> -o <output-dir> -s cms

# generate data classes for specific tables from public schema (format sensitive):
schema-dart -c <connection-string> -o <output-dir> -t "users","posts"
# or
schema-dart -c <connection-string> -o <output-dir> --schema=api --tables="profiles","posts"
''';