MagicBaseResponse constructor

MagicBaseResponse({
  1. required String event,
  2. required String tagId,
  3. required Map<String, Object?> rawMap,
  4. String? adObjectId,
  5. MagicAdObject? adObject,
  6. String? method,
  7. String? requestMessage,
  8. Map<String, Object?> extraMap = const <String, Object?>{},
})

Implementation

MagicBaseResponse({
  required this.event,
  required this.tagId,
  required this.rawMap,
  this.adObjectId,
  this.adObject,
  this.method,
  this.requestMessage,
  this.extraMap = const <String, Object?>{},
});