yubioath-flutter/lib/cancellation_exception.dart

10 lines
212 B
Dart
Raw Normal View History

2022-06-20 10:47:34 +03:00
import 'package:flutter/services.dart';
class CancellationException implements Exception {
CancellationException();
static isCancellation(PlatformException pe) =>
pe.code == 'CancellationException';
}