ParseException constructor

const ParseException({
  1. required String message,
  2. StackTrace? stackTrace,
})

Exception thrown when client is not able to parse data.

Implementation

const ParseException({
  required super.message,
  super.stackTrace,
});