ComputedColumn.forDialects constructor
const
ComputedColumn.forDialects({
- required String sqlite,
- required String postgres,
- String? mysql,
- String? mariadb,
- ComputedStorage storage = ComputedStorage.stored,
Uses explicit dialect expressions without silently substituting another.
Implementation
const ComputedColumn.forDialects({
required this.sqlite,
required this.postgres,
this.mysql,
this.mariadb,
this.storage = ComputedStorage.stored,
});