applyTypeHint method

void applyTypeHint(
  1. TypeHint hint
)

Applies a type hint to this column.

The hint will then be reflected in the type.

Implementation

void applyTypeHint(TypeHint hint) {
  _type = _type.addHint(hint);
}