yubioath-flutter/lib/user_cancelled_exception.dart
2022-06-10 12:23:52 +02:00

10 lines
215 B
Dart

import 'package:flutter/services.dart';
class UserCancelledException implements Exception {
UserCancelledException();
static isCancellation(PlatformException pe) =>
pe.code == 'UserCancelledException';
}