UserMessagingPlatformException constructor

const UserMessagingPlatformException({
  1. required String message,
  2. required Object code,
  3. required PlatformException originalException,
})

Constructor for subclasses.

Implementation

const UserMessagingPlatformException({
  required this.message,
  required this.code,
  required this.originalException,
});