SchemaPreview class

Preview of the SQL statements a schema plan would execute. A preview of SQL statements that would be executed for a schema plan.

final preview = SchemaPreview([
  SchemaStatement('CREATE TABLE users(id INTEGER PRIMARY KEY)'),
]);

Constructors

SchemaPreview(List<SchemaStatement> statements)
const

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
statements List<SchemaStatement>
Ordered statements that would run for a schema plan.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited