mobile_scanner_exception.dart 198 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 class MobileScannerException implements Exception { String message; MobileScannerException(this.message); @override String toString() { return "MobileScannerException: $message"; } }