TFormatException.fromMessage constructor

TFormatException.fromMessage(
  1. String message
)

Create a format exception from a specific error message.

Implementation

factory TFormatException.fromMessage(String message) {
  return TFormatException(message);
}