InterpolationException constructor

const InterpolationException(
  1. String message
)

Represents an exception from the Interpolation class.

Implementation

const InterpolationException(String message)
    : super(
        message: message,
        messagePrefix: 'InterpolationException',
      );