SchemaMutation.dropTable constructor
Implementation
factory SchemaMutation.dropTable({
required String table,
bool ifExists = false,
bool cascade = false,
}) => SchemaMutation._(
operation: SchemaMutationOperation.dropTable,
dropOptions: DropTableOptions(
table: table,
ifExists: ifExists,
cascade: cascade,
),
);