PlatformWalletException constructor

PlatformWalletException({
  1. required PlatformWalletExceptionKind kind,
  2. required String error,
  3. required String? description,
})

Implementation

PlatformWalletException({
  required this.kind,
  required this.error,
  required this.description,
});