generatePgProto3 function

Future<bool> generatePgProto3(
  1. PostgreSQLConnection connection, {
  2. String? path,
  3. bool schemaInName = true,
  4. String? schema,
  5. String? tableName,
})

Implementation

Future<bool> generatePgProto3(PostgreSQLConnection connection,
    {String? path,
    bool schemaInName = true,
    String? schema,
    String? tableName}) async {
  return await _generateProto3(
      connection,
      (await _getTables(connection, schema: schema, tableName: tableName)),
      schemaInName,
      path: path);
}