decode method

V? decode(
  1. Object? input
)

A stored value back in this operand's own type.

Implementation

V? decode(Object? input) {
  if (input == null) return null;

  return switch (transformer) {
    final ColumnTransformer<dynamic, dynamic> transformer =>
      transformer.decode(input),
    _ => input
  } as V?;
}