IAPError constructor

IAPError({
  1. required String source,
  2. required String code,
  3. required String message,
  4. dynamic details,
})

Creates a new IAP error object with the given error details.

Implementation

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