describe method

void describe(
  1. {String spacer = ""}
)

print a description of the schema

Implementation

void describe({String spacer = ""}) {
  print("${spacer}Table $name:");
  for (final column in columns) {
    column.describe(spacer: "  ");
  }
}