getExcept<Q> method

Converter<T> getExcept<Q>(
  1. Table table
)

Implementation

Converter<T> getExcept<Q>(Table table) {
  if (this == null) throw Exception('Missing converter on $table for type $Q.');

  return this!;
}