ConfigTypeException constructor

ConfigTypeException(
  1. String path,
  2. Type expectedType,
  3. Type actualType
)

Implementation

ConfigTypeException(String path, this.expectedType, this.actualType)
    : super(
        path,
        'ConfigTypeException: Config value at path "$path" '
        'is of type "$actualType" while "$expectedType" is expected.',
      );