custom<T> function
A domain value with a public const codec. Generation reads its storage tag
and references its encode/decode functions without executing them.
bits constrains integer storage to 16, 32 or 64 bits. precision and
scale configure decimal storage; temporal storage accepts precision
from 0 to 6. These options describe storage, independently of the Dart type.
Implementation
ColumnDefinition<T> custom<T>(
Codec<T> codec, {
String? name,
bool unique = false,
String? defaultSql,
T Function()? clientDefault,
int? bits,
int? precision,
int? scale,
}) => ColumnDefinition<T>._();