AdError constructor

const AdError({
  1. required int code,
  2. required String message,
  3. String? domain,
})

Creates an ad error.

Implementation

const AdError({
  required this.code,
  required this.message,
  this.domain,
});