mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-25 14:04:55 +03:00
10 lines
212 B
Dart
10 lines
212 B
Dart
|
import 'package:flutter/services.dart';
|
||
|
|
||
|
class CancellationException implements Exception {
|
||
|
CancellationException();
|
||
|
|
||
|
static isCancellation(PlatformException pe) =>
|
||
|
pe.code == 'CancellationException';
|
||
|
|
||
|
}
|