findType method

SqlType<D> findType(
  1. SqlTypeSystem types
)

Finds the runtime implementation of D in the provided types.

Implementation

SqlType<D> findType(SqlTypeSystem types) {
  return types.forDartType<D>();
}