InAppPurchaseException constructor

InAppPurchaseException({
  1. required String source,
  2. required String code,
  3. String? message,
})

Creates a InAppPurchaseException with the specified source and error code and optional message.

Implementation

InAppPurchaseException({
  required this.source,
  required this.code,
  this.message,
});