IapError constructor

const IapError({
  1. required String code,
  2. required String message,
  3. String? hint,
  4. Object? originalError,
})

Implementation

const IapError({
  required this.code,
  required this.message,
  this.hint,
  this.originalError,
});