exception.dart 262 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 import '../widgets/exception.dart'; class EncoderException implements FlutterMathException { final String message; final dynamic token; const EncoderException(this.message, [this.token]); String get messageWithType => 'Encoder Exception: $message'; }