hasMap method

bool hasMap(
  1. Type destination,
  2. Type source
)

Checks if the mapper has a map for the destination and source types.

Implementation

bool hasMap(Type destination, Type source) =>
    hasAutoMap(destination, source) || hasManualMap(destination, source);