hasManualMap method

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

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

Implementation

bool hasManualMap(Type destination, Type source) =>
    _manualMaps.containsKey(destination) &&
    _manualMaps[destination]!.containsKey(source) &&
    _manualMaps[destination]![source] != null;