DimeException.factoryNotFound constructor

DimeException.factoryNotFound({
  1. dynamic type,
})

Factory method to create factory not found for type message exception.

Implementation

factory DimeException.factoryNotFound({type}) =>
    DimeException(message: "Dime factory not found for: ${type ?? "NA"}");