String detailedDescription

Source

@override
String get detailedDescription {
  return "Some commands require connecting to a database to perform their action. These commands will "
      "have options for --connect and --database-config in their usage instructions."
      "You may either use a connection string (--connect) or a database configuration (--database-config) to provide "
      "connection details. The format of a connection string is: \n\n"
      "\tpostgres://username:password@host:port/databaseName\n\n"
      "A database configuration file is a YAML file with the following format:\n\n"
      "\tusername: \"user\"\n"
      "\tpassword: \"password\"\n"
      "\thost: \"host\"\n"
      "\tport: port\n"
      "\tdatabaseName: \"database\"";
}